1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| #include <iostream>
#include <pthread.h>
using namespace std;
pthread_mutex_t mutex; //~ 创建互斥锁mutex
int share = 0; //~ 共享数据
//~ 线程入口
void * thread_function(void *arg)
{
const int N = 1000000;
for(int i = 0; i < N; ++i)
{
//~ 访问共享数据
pthread_mutex_lock(&mutex);
share++;
pthread_mutex_unlock(&mutex);
}
}
int
main()
{
pthread_mutex_init(&mutex, NULL); //~ 初始化互斥锁mutex
pthread_t thread_id;
void *exit_status;
pthread_create(&thread_id, NULL, thread_function, NULL); //~ 创建新线程
for(int i = 0; i < 10; ++i)
{
usleep(10000); //~ 延时10ms
//~ 访问共享数据
pthread_mutex_lock(&mutex);
cout<<share<<endl;
pthread_mutex_unlock(&mutex);
}
pthread_join(thread_id, &exit_status); //~ 等待线程结束
pthread_mutex_destroy(&mutex); //~ 销毁互斥锁
return 0;
} |
Filed under: 之语言特性,边走编程 By
dutor @
August 21st, 2009,
163 views

你好!除了代码,此处没有多少原创之物,皆为本人搜集、整理、总结之记录与心得,欢迎转载分享!转载时请尽量注明出处,将不胜感激。祝你健康、快乐!
Be the first to comment on this entry.