2021年12月17日

摘要: 直接上代码,主要用到sem_trywait & sem_post #include<stdio.h> #include<pthread.h> #include<stdlib.h> #include<string.h> #include<semaphore.h> #include<time.h> se 阅读全文
posted @ 2021-12-17 13:47 real-watson 阅读(45) 评论(0) 推荐(0) 编辑
 
摘要: 1. 演示一个例子,出现死锁,用strace debug得到 #include<stdio.h> #include<pthread.h> #include<stdlib.h> #include<string.h> #include<semaphore.h> sem_t sem; typedef st 阅读全文
posted @ 2021-12-17 11:33 real-watson 阅读(359) 评论(0) 推荐(0) 编辑