如何使用 C 发送和捕获发送到 PID 的信号

发布于 2024-11-05 14:37:17 字数 106 浏览 0 评论 0原文

假设,我知道我的父进程 id 并且想

kill(my_parent_id, SIGTERM)

作为父进程,我怎样才能捕获这个信号?

Suppose, i know the process of my parent id and would like to

kill(my_parent_id, SIGTERM)

As a parent process, how can i catch this signal?

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

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

发布评论

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

评论(1

浊酒尽余欢 2024-11-12 14:37:17

注册以捕获信号:

void termination_handler(int sig)
{
   /* do something */
}

struct sigaction handler;

handler.sa_handler = termination_handler;
sigemptyset (&handler.sa_mask);
handler.sa_flags = SA_RESTART;

sigaction(SIGTERM, &handler, NULL);

这是一个很好的 示例页面< /a>.

您可以使用旧样式,但不建议这样做:

void termination_handler()
{
    /* do something */
}

signal(SIGTERM, termination_handler);

Register to catch the signal:

void termination_handler(int sig)
{
   /* do something */
}

struct sigaction handler;

handler.sa_handler = termination_handler;
sigemptyset (&handler.sa_mask);
handler.sa_flags = SA_RESTART;

sigaction(SIGTERM, &handler, NULL);

Here is a good example page.

You could use the old style, but it is not suggested:

void termination_handler()
{
    /* do something */
}

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