使用模块句柄悬挂模块
我正在寻找一种仅使用模块句柄来挂起模块的方法。或者有没有办法可以用模块句柄抓取主线程句柄?我对 C++ 还很陌生,所以我不确定这是否可行。
I'm looking for a way to suspend a module with only the module handle. Alternatively is there a way I can grab the main thread handle with the module handle? I am still quite new to C++ so I'm not sure if this is possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法暂停模块。您可以暂停线程,尽管您不应该这样做。模块没有主线程。一个进程有一个主线程。
挂起线程不应该在
一种强有力的方式。这样做会导致僵局。相反,您应该向线程发出暂停信号,然后等待它可以这样做。让
当线程知道自己处于安全状态时,线程会暂停。
很抱歉,如果这听起来没有帮助,但您需要解释您的真正问题。
You can't suspend modules. You can suspend threads although you should not do so. A module does not have a main thread. A process has a main thread.
Suspending a thread is not something that should be done in
a forceful way. Doing so leads to deadlocks. You should instead signal the thread to pause and then wait until it can do so. Let
the thread pause when it knows it is in a safe state to do so.
Sorry if this sounds unhelpful but you need to explain your real problem.