Win32 CRITICAL_SECTION 包含什么?
Win32 CRITICAL_SECTION 包含哪些数据?它有多大?
这是没有记录的,大概是特定于实现的,但我很想知道
What data does the Win32 CRITICAL_SECTION contain, and how big is it?
This is undocumented and presumably implementation specific, but I'm curious to know
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我安装的 Windows Vista SDK:
WinNT.h:
WinBase.h:
This is from my installation of Windows Vista SDK:
WinNT.h:
WinBase.h:
为什么不检查头文件?
查看
WINNT.H
并看看您会发现什么:)(假设您有 Windows C++ 文件)
通常该结构包含:
编辑: 类似
sizeof(CRITICAL_SECTION)
将显示大小。Why don't you check the headers files?
Check out
WINNT.H
and see what you'll find out :)(assuming that you have Windows C++ files)
Usually the structure contains:
Edit: a command like
sizeof(CRITICAL_SECTION)
will reveal the size.