发送/捕获 SIGTERM 的 Win32 API 模拟

发布于 2024-07-29 15:48:17 字数 304 浏览 9 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(3

铁轨上的流浪者 2024-08-05 15:48:17

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

橘香 2024-08-05 15:48:17

您在第一个创建的线程上收到一条 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

迟月 2024-08-05 15:48:17

可能是 MSDN 中的 Windows 电源管理有帮助。 但它处理系统事件而不是每个进程。

对于进程,您可以使用 WM_CLOSE 检测终止。 您需要处理 Windows 消息。 如果它是一个控制台应用程序,您需要安装一个控制处理程序; 查看 MSDN 上的 SetConsoleCtrlHandler

May 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

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