linux中的C里面使用pthread_mutex_t锁

出处http://blog.csdn.net/w397090770/article/details/7264315

linux下为了多线程同步,通常用到锁的概念。
posix下抽象了一个锁类型的结构:ptread_mutex_t。通过对该结构的操作,来判断资源是否可以访问。顾名思义,加锁(lock)后,别人就无法打开,只有当锁没有关闭(unlock)的时候才能访问资源。
它主要用如下5个函数进行操作。
1:pthread_mutex_init(pthread_mutex_t * mutex,const pthread_mutexattr_t *attr);
初始化锁变量mutex。attr为锁属性,NULL值为默认属性。
2:pthread_mutex_lock(pthread_mutex_t *mutex);加锁
3:pthread_mutex_tylock(pthread_mutex_t *mutex);加锁,但是与2不一样的是当锁已经在使用的时候,返回为EBUSY,而不是挂起等待。
4:pthread_mutex_unlock(pthread_mutex_t *mutex);释放锁
5:pthread_mutex_destroy(pthread_mutex_t *mutex);使用完后释放
下面经典例子为创建两个线程对sum从1加到100。前面第一个线程从1-49,后面从50-100。主线程读取最后的加值。为了防止资源竞争,用了pthread_mutex_t 锁操作。

 

[cpp] view plain copy print ?
  1. #include<stdlib.h> 
  2. #include<stdio.h> 
  3. #include<unistd.h> 
  4. #include<pthread.h> 
  5. typedef struct ct_sum 
  6. {   int sum; 
  7.     pthread_mutex_t lock; 
  8. }ct_sum; 
  9. void * add1(void * cnt) 
  10. {      
  11.     
  12.     pthread_mutex_lock(&(((ct_sum*)cnt)->lock)); 
  13.     int i; 
  14.         for( i=0;i<50;i++){ 
  15.             (*(ct_sum*)cnt).sum+=i;} 
  16.     pthread_mutex_unlock(&(((ct_sum*)cnt)->lock)); 
  17.     pthread_exit(NULL); 
  18.     return 0; 
  19. void * add2(void *cnt) 
  20. {      
  21.     int i; 
  22.     cnt= (ct_sum*)cnt; 
  23.     pthread_mutex_lock(&(((ct_sum*)cnt)->lock)); 
  24.     for( i=50;i<101;i++) 
  25.     {    (*(ct_sum*)cnt).sum+=i;        
  26.     } 
  27.     pthread_mutex_unlock(&(((ct_sum*)cnt)->lock)); 
  28.     pthread_exit(NULL); 
  29.     return 0; 
  30. int main(void
  31. {   int i; 
  32.     pthread_t ptid1,ptid2; 
  33.     int sum=0; 
  34.     ct_sum cnt; 
  35.     pthread_mutex_init(&(cnt.lock),NULL); 
  36.     cnt.sum=0; 
  37.     pthread_create(&ptid1,NULL,add1,&cnt); 
  38.     pthread_create(&ptid2,NULL,add2,&cnt); 
  39.  
  40.     pthread_mutex_lock(&(cnt.lock)); 
  41.     printf("sum %d\n",cnt.sum); 
  42.     pthread_mutex_unlock(&(cnt.lock)); 
  43.     pthread_join(ptid1,NULL); 
  44.     pthread_join(ptid2,NULL); 
  45.     pthread_mutex_destroy(&(cnt.lock)); 
  46.     return 0; 
  47. }  

 

你可能感兴趣的:(linux中的C里面使用pthread_mutex_t锁)