WinAPI 定时互斥锁
如何锁定互斥锁(关键部分)一段时间?有没有相关的API函数?据我所知,Windows 中没有类似的东西。如果可以的话,是否可以手动实现?
谢谢。
How to lock mutex (critical section) for some amount of time? Is there any API function for that? As far as I see there is nothing like that in windows. If so, is it possible to implement it manualy?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Win32 中的
pthread_mutex_timedlock()
等效项是使用 互斥体 并在 等待函数。The equivalent of
pthread_mutex_timedlock()
in Win32 is using a Mutex and specifying a timeout (other thanINFINITE
) in one of the wait-functions.