Fork me on GitHub
摘要: 0 推荐在openEuer上实现 1 描述操作系统中“读者-写者”问题,理解问题的本质,提交你理解或查找到的文本资料 2 利用多线程完成 reader 和 writer 3 在main中测试若干个 reader 和 writer 的测试,提交截图说明代码的正确性 同步互斥问题 - 读者写者问题之写者 阅读全文
posted @ 2022-11-08 16:55 郭幸坤 阅读(271) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <pthread.h> #include <ctype.h> struct arg_set { char *fname; int count; }; struct arg_set *mailbox = N 阅读全文
posted @ 2022-11-08 16:32 郭幸坤 阅读(12) 评论(0) 推荐(0) 编辑
1