70 字
1 分钟
implementing condition variables with semaphores
here the summary of the paper:
introduction
所有当今流行的用于多线程的操作系统的设计,都基于下面三种数据类型:
- 线程,包括针对线程的fork和join
- 锁,包括获取和释放
- 条件变量,包括等待,信号,和广播
implementing condition variables with semaphores
https://dididudu998.github.io/posts/implementing-condition-variables-with-semaphores/