线程同步

void *read_data();
char buf[64]={0};
sem_t sem1;
sem_t sem2;
int main()
{
    pthread_t thread1;
    pthread_t thread2;
    sem_init(&sem1,0,0);
    sem_init(&sem2,0,1);
    if(0!=pthread_create(&thread1,NULL,write_data,NULL))
    {
        perror("pthread_create thread1");
        exit(-1);
    }
    if(0!=pthread_create(&thread2,NULL,read_data,NULL))
    {
        perror ("pthread_create thread2");
        exit(-1);
    }
    pthread_join(thread1,NULL);
    pthread_join(thread2,NULL);
    return 0;
}
void *write_data()
{
    while(1)
    {
        sem_wait(&sem2);
        fgets(buf,64,stdin);
        sem_post(&sem1);
    }
}
void *read_data()
{
    while(1)
    {
        sem_wait(&sem1);
        printf("%s",buf);
        sem_post(&sem2);
    }
}
全部评论

相关推荐

10-07 20:48
门头沟学院 Java
不敢追175女神:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
昨天 11:07
河南大学 Java
宇宙厂 测开 n*15
丘丘给个offer:有后选后
点赞 评论 收藏
分享
评论
点赞
1
分享
牛客网
牛客企业服务