c++ 中临界区锁的功能范围是什么?

发布于 2024-09-15 01:44:02 字数 209 浏览 5 评论 0原文

// locks a critical section, and unlocks it automatically
// when the lock goes out of scope
CAutoLock(CCritSec * plock)

以上来自wxutil.h,它是锁定不同进程的访问,还是只是锁定同一进程中的不同线程?

// locks a critical section, and unlocks it automatically
// when the lock goes out of scope
CAutoLock(CCritSec * plock)

The above is from wxutil.h, does it lock the access of different process , or just locks different threads in the same process?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凉栀 2024-09-22 01:44:02

只是跨线程。来自 CAutoLock 的文档:

CAutoLock构造函数锁定临界区,...

和 ​​CCritSec

CCritSec类提供线程锁。

更明确地说,根据关键部分对象的描述:

临界区对象提供与互斥体对象提供的同步类似的同步,不同之处在于临界区只能由单个进程的线程使用。< /p>

Just across threads. From the doc of CAutoLock:

The CAutoLock constructor locks the critical section, ...

and CCritSec:

The CCritSec class provides a thread lock.

More explicitly, from the description of Critical Section Objects:

A critical section object provides synchronization similar to that provided by a mutex object, except that a critical section can be used only by the threads of a single process.

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