linux 多線程下互斥鎖實現哲學家用餐模型

#include <stdio.h> #include <unistd.h> #include <pthread.h> #include <stdlib.h> pthread_mutex_t m[5];//定義5把鎖 //哲學家i左邊的筷子編號爲i,右邊筷子編號爲i+1 void *tfn(void *arg) { int i, l, r; srand(time(NULL)); i =
相關文章
相關標籤/搜索