Linux下同步机制——互斥量的使用
2019-07-06 本文已影响0人
锋之律
1.初始化互斥量
pthread_mutex_t myMutex;
pthread_mutex_init(&myMutex, NULL);
2.互斥量的使用
pthread_mutex_lock(&myMutex);
// Enter the code you need to protect here
pthread_mutex_unlock(&myMutex);
3.销毁互斥锁
pthread_mutex_destroy(&myMutex);