使用 CriticalSection 创建类似互斥锁的程序
例如,
EnterCriticalSection ( cs );
LeaveCriticalSection ( cs );
我想创建一个锁定它的函数,并在调用您的函数调用或离开该对象时释放它。
如何开始上课?
e.g.
EnterCriticalSection ( cs );
LeaveCriticalSection ( cs );
I want to create a function locking it and release if invoke your function call or leave the object.
How can get started to work out the class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么有作用域的 CriticalSection 吗?
或者考虑使用Boost互斥体。
So a scoped CriticalSection?
Or consider a Boost mutex.
您可以将关键部分包装在具有公共函数
acquire
和release
的Mutex
类中,并使用第二个名为ScopedLock
的类> 在构造时获取互斥体并在销毁时释放它。互斥锁:
锁:
像这样使用它:
You could wrap the critical section in a
Mutex
class with public functionsacquire
andrelease
and have a second class calledScopedLock
acquire the mutex on construction and release it on destruction.The Mutex:
The Lock:
Use it like this: