我对信号在进程组内传播的方式有疑问。这是我的情况和问题的解释:
我有一个应用程序,它由 shell 脚本(带有 su)启动。这个 shell 脚本本身是由 python 应用程序使用 subprocess.Popen 启动的,我将 os.setpgrp 作为 preexec_function 调用,并使用 ps 验证了 bash 脚本、su 命令和最终应用程序都具有相同的 pgid。
现在,当我向 bash 脚本(进程组的负责人)发送信号 USR1 时,有时应用程序会看到此信号,有时则看不到。我不知道为什么我有这种随机行为(应用程序大约有 50% 的时间能看到信号)
这是我正在测试的示例代码:
Python启动器:
#!/usr/bin/env python
p = subprocess.Popen( ["path/to/bash/script"], stdout=…, stderr=…, preexec_fn=os.setpgrp )
# loop to write stdout and stderr of the subprocesses to a file
# not that I use fcntl.fcntl(p.stdXXX.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
p.wait()
bash 脚本:
#!/bin/bash
set -e
set -u
cd /usr/local/share/gios/exchange-manager
CONF=/etc/exchange-manager.conf
[ -f $CONF ] && . $CONF
su exchange-manager -p -c "ruby /path/to/ruby/app"
红宝石应用程序:
#!/usr/bin/env ruby
Signal.trap("USR1") do
puts "Received SIGUSR1"
exit
end
while true do
sleep 1
end
所以我尝试将信号发送到 bash 包装器(从终端或从 python 应用程序),有时 ruby 应用程序会看到信号,有时不会。我不认为这是一个日志记录问题,因为我试图用一种直接写入不同文件的方法来替换 puts。
你们知道什么可能是我的问题的根本原因以及如何解决它吗?