gpt4 book ai didi

c - Linux 从 C 程序的 pthread 重启网络

转载 作者:太空宇宙 更新时间:2023-11-04 11:35:33 25 4
gpt4 key购买 nike

我们有一个使用 pthread 库创建多个线程的应用程序。因为我们只希望主进程处理某些信号,所有 pthreads 都阻塞了 SIGTERM、SIGINT 和 SIGHUP。在我们的一个 pthread 中,我们使用

重新启动网络
system("/etc/init.d/networking restart");

看起来系统调用将派生另一个继承 pthread 信号掩码的子进程。问题是它重新启动了 ssh 守护进程,新创建的 ssh 守护进程从我们的 pthread 继承了信号掩码(SIGTERM、SIGINT 和 SIGHUP 被阻止)。结果是 future 的网络重新启动需要很长时间,因为它无法发送 SIGTERM 并在发送 SIGKILL 之前等待超时。我的问题是从像我们这样的多线程应用程序重新启动网络的最佳方式是什么。有没有办法告诉 init 重新启动服务?我想在调用系统之前解除信号阻塞,但是如果有人在此期间终止我们的应用程序,我们的主信号处理程序可能不会被调用。

我们正在运行一个在嵌入式 ARM 板上运行的 debian linux 发行版。这是 uname -a

的输出
Linux ts 2.6.35.3-433-g0fae922 #6 PREEMPT Thu Jul 28 09:24:24 MST 2011 armv7l GNU/Linux

感谢任何帮助,

马丁。

最佳答案

In one of our pthreads we restart the network using system(...).

这是非常不安全的,会导致您的应用程序挂起或崩溃。参见 this question和讨论。

what is the best way of restarting the network from a multi-threaded application

在您创建任何线程之前 fork 一个子线程。让那个 child 等待套接字或信号(例如 SIGUSR1)。醒来后, child 将执行 system(...) 并重新休眠。

关于c - Linux 从 C 程序的 pthread 重启网络,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8154818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com