发送/捕获 SIGTERM 的 Win32 API 模拟
在 POSIX OS 下,有信号 API 允许向进程发送信号以将其关闭 使用kill,您可以使用sigaction捕获它并执行您需要的操作;
但是,Win32 不是 POSIX 系统,因此:
- 如何处理可能出现的关闭事件,例如来自“任务管理器”中的“结束进程”的关闭事件?
- 向 Win32 应用程序发送关闭信号的标准 API 是什么?
我不是在谈论 GUI,而是在谈论应该很好地关闭的 TCP/IP 服务器。 不像像 Windows 服务那样运行。
Under POSIX OS there is signal API that allows to send a signal to process to shut it down
with kill and you can catch it with sigaction and do what you need;
However, Win32 is not POSIX system, so:
- How can I handle shutdown events that may come, for example from "End Process" in "Task manager"?
- What is the standard API for sending shutdown signal to Win32 application?
I'm not talking about GUI, I'm talking about TCP/IP server that should be nicely shutdown. that does not run like windows service.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
MSDN Unix 代码迁移指南有一章关于Win32 代码转换和信号处理。
尽管 Microsoft 已决定存档这份出色的指南,但它非常有用。
描述了三种方法:
原生信号
事件对象
消息
MSDNs Unix Code Migration Guide has a chapter about Win32 code conversion and signal handling.
Although Microsoft has decided to archive this brilliant guide, it is very useful.
Three methods are described:
Native signals
Event objects
Messages
您在第一个创建的线程上收到一条
WM_QUIT
消息。如果您不处理该问题,您的进程将被强制关闭。
因此,只需在第一个线程中实现一个消息队列,它会查找
WM_QUIT
消息You get a
WM_QUIT
message on your first created thread.When you don't handle that, your process is forcibly shutdown.
So just implement a message queue in your first thread, which looks for the
WM_QUIT
message可能是 MSDN 中的 Windows 电源管理有帮助。 但它处理系统事件而不是每个进程。
对于进程,您可以使用
WM_CLOSE
检测终止。 您需要处理 Windows 消息。 如果它是一个控制台应用程序,您需要安装一个控制处理程序; 查看 MSDN 上的 SetConsoleCtrlHandlerMay be Windows Power Management from MSDN would be helpful. But it deals with system events rather than per process.
For a process, you would be able to detect termination with
WM_CLOSE
. You would need to handle windows messages. If it's a console application you would need to install a control handler; take a look at SetConsoleCtrlHandler on MSDN