一步一步学Linux C:线程互斥实例
- /*编译时注意,要手动连接库*/
- #include <stdio.h>
- #include <pthread.h>
- #include <unistd.h>
- #include <stdlib.h>
-
- static int value = 0;
- pthread_mutex_t mutex;
-
- void func(void* args)
- {
- while(1)
- {
- pthread_mutex_lock(&mutex);
- sleep(1);
- value ++;
- printf("value = %d!
", value);
- pthread_mutex_unlock(&mutex);
- }
- }
-
- int main()
- {
- pthread_t pid1, pid2;
- pthread_mutex_init(&mutex,NULL);
-
- if(pthread_create(&pid2,NULL,&func,NULL))
- {
- return -1;
- }
-
- if(pthread_create(&pid1,NULL,&func,NULL))
- {
- return -1;
- }
- while(1)
- sleep(0);
-
- return 0;
- }
编译时要手动连接库:详细说明见:http://www.linuxidc.com/Linux/2012-03/57198.htm