WinAPI 定时互斥锁

发布于 2024-10-12 16:54:47 字数 87 浏览 6 评论 0原文

如何锁定互斥锁(关键部分)一段时间?有没有相关的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘逸的'云 2024-10-19 16:54:47

Win32 中的 pthread_mutex_timedlock() 等效项是使用 互斥体 并在 等待函数

The equivalent of pthread_mutex_timedlock() in Win32 is using a Mutex and specifying a timeout (other than INFINITE) in one of the wait-functions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文