并发 - 实现信号量的监视器
我需要帮助构建一个实现信号量的监视器,简单的 C 示例就可以了。
这是为了证明监视器可以在任何可以使用信号量的地方使用。
I need help constructing a monitor that implements a semaphore, and simple C example will do.
This is to demonstrate that a monitor can be used any place a semaphore can be used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您说允许互斥体/条件变量,请检查以下内容:
If you say mutex/condvars are allowed, then check this:
这是有关监视器的维基百科文章的主要答案。
This is the main answer on the Wikipedia article regarding monitors.