linux线程同步简单示例

2022/9/7 5:24:13

本文主要是介绍linux线程同步简单示例,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#include<stdio.h> #include<pthread.h> #include<stdlib.h> //int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg); //int pthread_join(pthread_t thread, void **retval); //void pthread_exit(void *retval); //函数模型 int get_data = 0; pthread_mutex_t mutex;//定义锁 pthread_cond_t cond;//定义控制信号 void *func1(void *arg) {
    while(1)     {         pthread_cond_wait(&cond,&mutex);//等待在mutex这把锁上的信号到来才能解除阻塞,否则一直阻塞下去         sleep(1);         printf("get_data =%d\n",get_data);         printf("t1  run================\n");         get_data = 0;         sleep(1);     } //  pthread_exit(); } void *func2(void *arg)//指针的函数 返回指针 {     pthread_mutex_lock(&mutex);//加锁     while(1)     {     sleep(1);     printf("t2 get_data = %d\n",get_data);     get_data++;         if(get_data == 3)     {//全局变量到3发送信号func1执行     pthread_cond_signal(&cond);     pthread_mutex_unlock(&mutex);//解锁     sleep(1);//睡一秒让出cpu时间片不让t2线程抢到执行权     }       }     } void *func3(void *arg) { //  pthread_mutex_lock(&mutex); //  pthread_mutex_unlock(&mutex); //  pthread_exit(); }
int main() {     int ret1 = 0;     int ret2 = 0;     int ret3 = 0;     int param = 100;     pthread_t t1;//定义线程变量     pthread_t t2;     pthread_t t3;     pthread_cond_init(&cond,NULL);//初始化信号     pthread_mutex_init(&mutex,NULL);//初始化锁     ret1 = pthread_create(&t1,NULL,func1,(void*)&param);//创建线程     if(ret1  == 0)     { //      printf("main create to t1 success\n");     }     ret2 = pthread_create(&t2,NULL,func2,(void*)&param);         if(ret2  == 0)         { //              printf("main create to t2 success\n");         }         ret3 = pthread_create(&t3,NULL,func3,(void*)&param);         if(ret3  == 0)         { //              printf("main create to t3 success\n");         }
//  printf("main %ld\n",(unsigned long)pthread_self());     pthread_join(t1,NULL);//主函数线程执行完等这些创建的线程执行完才能退出     pthread_join(t2,NULL);//不设置的可能会导致主线程执行完释放,其他线程无法正常执行     pthread_join(t3,NULL);     pthread_mutex_destroy(&mutex);//销毁锁     pthread_cond_destroy(&cond);//销毁信号     return 0; }

这篇关于linux线程同步简单示例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程