 |
多線程編程,mutex與condition的相關推薦_ChinaUnix論壇
有三個線程pthread1,pthread2,pthread3 邏輯如下: 三個線程就一把鎖, 線程1定義鎖pthread_mutex_t mutex; 初始化鎖pthread_mutex_init(&mutex, NULL); 其上鎖pthread_mutex_lock(&mutex); 和解鎖pthread_mutex_unlock(&mutex); 由pthread1控制,每隔一段時間上鎖和 ...
bbs.chinaunix.net |
 |