多线程同步

</pre><p>一、互斥锁</p><p><pre name="code" class="cpp">#include<stdio.h>
#include<pthread.h>
#include<stdlib.h>
#include<unistd.h>

int globle_i = 50;
pthread_mutex_t globle_mutex;
void* thread_func(){
  // pthread_mutex_lock(&globle_mutex);  //如果不加锁,仍然可以改变globel_i,所以需要自己控制好锁
   while(globle_i != 0)
    {
        if( globle_i != 0)  
        {
            globle_i  = globle_i  -1; 
        }
        printf("in new thread globle_i = %d\n", globle_i);
        usleep(1);
    }
   //pthread_mutex_unlock(&globle_mutex);
    return NULL;
}
int main(){
   pthread_t thread;
   int res = -1;
   res = pthread_mutex_init(&globle_mutex, NULL);
   if(res != 0){
        perror("ptherad_mutex_init failed!\n"); 
        exit(EXIT_FAILURE);
   }
    
   res = pthread_create(&thread, NULL, thread_func, NULL);
   if(res != 0)
   {
        perror("ptherad_mutex_init failed!\n"); 
        exit(EXIT_FAILURE);
   }

   pthread_mutex_lock(&globle_mutex);
   while(globle_i != 0)
    {
        if( globle_i != 0)  
        {
            globle_i  = globle_i  -1; 
        }
        else{
            printf("no more\n"); 
        }
        printf("in the main thread globle_i=%d\n", globle_i);
        usleep(1);
    }
   pthread_mutex_unlock(&globle_mutex);

   res = pthread_join(thread, NULL);
   if(res != 0)
   {
       perror("pthread_join failed\n");
        exit(EXIT_FAILURE);
   }

   printf("thread joined\n");

   pthread_mutex_destroy(&globle_mutex);
    return 0;
}

二、条件变量


三、信号量


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值