创建两个线程A、B,在不考虑线程退出的情况下:1. A线程 循环 打印str字符串。2. B线程 循环 倒置str字符串3. 要求A线程打印出来的结果是有序的
使用线程同步互斥机制中的信号量机制实现
1.创建信息量
//创建信息量
sem_t sem;
if(sem_init(&sem,0,1) < 0)
{
perror("sem_init");
return -1;
}
2.创建线程
//创建线程
pthread_t tid1,tid2;
int res = pthread_create(&tid1,NULL,func,NULL);
//判断返回值
if(res != 0)
{
perror("pthread_create");
return -1;
}
printf("分支线程创建成功\n");
if(pthread_create(&tid2, NULL, func1, NULL) != 0)
{
perror("pthread_create");
return -1;
}
3.分线程循环打印
void *func(void *arg)
{
while(1)
{
sem_wait(&sem);
printf("A=%s\n",str);
sem_post(&sem);
}
pthread_exit(NULL);
return NULL;
}
4.分线程倒置
void *func1(void *arg)
{
int i = 0;
char temp = 0;
while(1)
{
sem_wait(&sem);
for(i=0;i<strlen(str)/2;i++)
{
temp = str[i];
str[i] = str[strlen(str)-1-i];
str[strlen(str)-1-i] = temp;
}
sem_post(&sem);
}
pthread_exit(NULL);
}
5.完整代码
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>
#include <string.h>
#include <semaphore.h>
char str[] = "123456";
sem_t sem;
void *func(void *arg)
{
while(1)
{
sem_wait(&sem);
printf("A=%s\n",str);
sem_post(&sem);
}
pthread_exit(NULL);
return NULL;
}
void *func1(void *arg)
{
int i = 0;
char temp = 0;
while(1)
{
sem_wait(&sem);
for(i=0;i<strlen(str)/2;i++)
{
temp = str[i];
str[i] = str[strlen(str)-1-i];
str[strlen(str)-1-i] = temp;
}
sem_post(&sem);
}
pthread_exit(NULL);
}
int main(int argc, const char *argv[])
{
//创建信息量
if(sem_init(&sem,0,1) < 0)
{
perror("sem_init");
return -1;
}
//创建线程
pthread_t tid1,tid2;
int res = pthread_create(&tid1,NULL,func,NULL);
//判断返回值
if(res != 0)
{
perror("pthread_create");
return -1;
}
printf("分支线程创建成功\n");
if(pthread_create(&tid2, NULL, func1, NULL) != 0)
{
perror("pthread_create");
return -1;
}
pthread_join(tid1,NULL);
pthread_join(tid2,NULL);
//销毁信号量
if(sem_destroy(&sem) < 0)
{
perror("sem_destroy");
return -1;
}
return 0;
}