怕黑睫毛

文章
3
资源
0
加入时间
3年0月20天

linux互斥锁的应用

//使用互斥锁同步线程#include #include #include #include pthread_mutex_t mutex;static int tickets = 100;void *thrd_func1(void *arg);void *thrd_func2(void *arg);int main(){    pthread