C++-(25)-多執行緒-POSIX(3)-互斥量-pthread_mutex

多雲的夏天發表於2020-11-27

   兩個執行緒同時訪問一個全域性變數時, 一個執行緒不停的“取消”了另一個執行緒的操作,解決這個問題,可以用“互斥“”來解決。
   示例如下:

#include <pthread.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
/*用法:1.初始化 宣告一個 
        pthread_mutex_t ymutex=PTHREAD_MUTEX_INITIALIZER;pthread_mutex_t,
        2.呼叫
pthread_mutex_lock(&mymutex);
pthread_mutex_unlock(&mymutex);

*/
int myglobal;
 pthread_mutex_t mymutex=PTHREAD_MUTEX_INITIALIZER;
 void *thread_function(void *arg) {
  int i,j;
  for ( i=0; i<20; i++) 
  {
    pthread_mutex_lock(&mymutex);
    j=myglobal;
    j=j+1;
    printf(".");
    fflush(stdout);
    sleep(1);
    myglobal=j;
    pthread_mutex_unlock(&mymutex);
  }
  return NULL;
}
int main(void) {
  pthread_t mythread;
  int i;
  if ( pthread_create( &mythread, NULL, thread_function, NULL) ) {
    printf("error creating thread.");
    abort();
  }
  for ( i=0; i<20; i++) {
    pthread_mutex_lock(&mymutex);
    myglobal=myglobal+1;
    pthread_mutex_unlock(&mymutex);
    printf("o");
    fflush(stdout);
    sleep(1);
  }
  if ( pthread_join ( mythread, NULL ) ) {
    printf("error joining thread.");
    abort();
  }
  printf("\nmyglobal equals %d\n",myglobal);
  exit(0);
}

 

相關文章