- 论坛徽章:
- 0
|
代码如下:- #include<pthread.h>
- #include<stdlib.h>
- #include<stdio.h>
- #include<unistd.h>
- int myglobal;
- pthread_mutex_t mymutex = PTHREAD_MUTEX_INITIALIZER;
-
- void *thread_function( void *arg )
- {
- int i;
- int j;
- for( i=0; i<10; i++)
- {
- pthread_mutex_lock(&mymutex);
- j = myglobal;
- j=j+1;
- printf("i = %d in the thread\n",i);
- sleep(1);
- fflush(stdout);
- myglobal = j;
- pthread_mutex_unlock(&mymutex);
- }
- return NULL;
- }
- int main()
- {
- pthread_t mythread;
- int i;
-
- if( pthread_create(&mythread, NULL, thread_function, NULL ) )
- {
- printf("error creating thread.");
- abort();
- }
-
- printf("\n======================\n");
- for( i = 0; i<10; i++ )
- {
- pthread_mutex_lock(&mymutex);
- myglobal = myglobal + 1;
- printf("i = %d in the main process\n",i);
- fflush(stdout);
- sleep(1);
- pthread_mutex_unlock(&mymutex);
- }
- printf("\n======================\n");
-
- if(pthread_join(mythread, NULL) )
- {
- printf("error joining thread");
- abort();
- }
- printf(" \n myglogal equals %d \n",myglobal);
-
- exit(0);
- }
复制代码 这个是输出结果:- i = 0 in the thread
- ======================
- i = 1 in the thread
- i = 2 in the thread
- i = 3 in the thread
- i = 4 in the thread
- i = 5 in the thread
- i = 6 in the thread
- i = 7 in the thread
- i = 8 in the thread
- i = 9 in the thread
- i = 0 in the main process
- i = 1 in the main process
- i = 2 in the main process
- i = 3 in the main process
- i = 4 in the main process
- i = 5 in the main process
- i = 6 in the main process
- i = 7 in the main process
- i = 8 in the main process
- i = 9 in the main process
- ======================
-
- myglogal equals 20
复制代码 |
|