- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一些代码可以fork()
,在子进程中调用setsid()
,并开始一些处理。如果任何子进程退出 (waitpid(-1, 0)
),我将杀死所有子进程组:
child_pids = []
for child_func in child_functions:
pid = fork()
if pid == 0:
setsid()
child_func()
exit()
else:
child_pids.append(pid)
waitpid(-1, 0)
for child_pid in child_pids:
try:
killpg(child_pid, SIGTERM)
except OSError as e:
if e.errno != 3: # 3 == no such process
print "Error killing %s: %s" %(child_pid, e)
但是,偶尔调用 killpg
会失败并显示“不允许操作”:
Error killing 22841: [Errno 1] Operation not permitted
为什么会这样?
一个完整的工作示例:
from signal import SIGTERMfrom sys import exitfrom time import sleepfrom os import *def slow(): fork() sleep(10)def fast(): sleep(1)child_pids = []for child_func in [fast, slow, slow, fast]: pid = fork() if pid == 0: setsid() child_func() exit(0) else: child_pids.append(pid)waitpid(-1, 0)for child_pid in child_pids: try: killpg(child_pid, SIGTERM) except OSError as e: print "Error killing %s: %s" %(child_pid, e)
产生:
$ python killpg.pyError killing 23293: [Errno 3] No such processError killing 23296: [Errno 1] Operation not permitted
最佳答案
我也添加了一些调试 ( slightly modified source )。当你试图杀死一个已经退出并处于僵尸状态的进程组时,就会发生这种情况。哦,只需使用 [fast, fast]
即可轻松重复。
$ python so.py
spawned pgrp 6035
spawned pgrp 6036
Reaped pid: 6036, status: 0
6035 6034 6035 Z (Python)
6034 521 6034 S+ python so.py
6037 6034 6034 S+ sh -c ps -e -o pid,ppid,pgid,state,command | grep -i python
6039 6037 6034 R+ grep -i python
killing pg 6035
Error killing 6035: [Errno 1] Operation not permitted
6035 6034 6035 Z (Python)
6034 521 6034 S+ python so.py
6040 6034 6034 S+ sh -c ps -e -o pid,ppid,pgid,state,command | grep -i python
6042 6040 6034 S+ grep -i python
killing pg 6036
Error killing 6036: [Errno 3] No such process
不确定如何处理。也许您可以将 waitpid 放在一个 while 循环中以获取所有终止的子进程,然后继续 pgkill()ing 其余部分。
但是您的问题的答案是您获得了 EPERM,因为您不允许 killpg 僵尸进程组组长(至少在 Mac OS 上)。
此外,这在 python 之外是可验证的。如果你在那里 sleep ,找到其中一个僵尸的 pgrp,并试图杀死它的进程组,你也会得到 EPERM:
$ kill -TERM -6115
-bash: kill: (-6115) - Operation not permitted
确认这在 Linux 上也不会发生。
关于python - 当所有权正确时,为什么 `killpg` 会返回 “not permitted”?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12521705/
我正在使用 tcod-rs。用于绘制到 RootConsole 的每个方法都采用一个可变引用。中央循环是一个 while 循环,它等待窗口关闭、清除屏幕、绘制,然后刷新。 “检查窗口关闭”方法也采用可
我写了一个具有这种形式的函数: 结果 f(const IParameter& p); 我的意图是这个签名将明确表明函数没有取得参数 p 的所有权。 问题是 Result 将保留对 IParameter
这个问题在这里已经有了答案: 关闭 9 年前。 Possible Duplicate: What is a smart pointer and when should I use one? 我正在阅
假设我有一个类: class Scheduler { Scheduler(JobService *service); AddJob(JobID id, ISchedule *sched
我试图弄清楚所有权如何与函数 CVMetalTextureGetTexture 一起工作: CVMetalTextureRef textureRef; // ... textureRef is cre
这个问题在这里已经有了答案: Should we pass a shared_ptr by reference or by value? (10 个答案) 关闭 4 年前。 例如 class A {
我正在做一个附带项目,我需要根据他的 gmail 帐户或任何其他参数来验证 channel 是否属于某个用户……这基本上是为了避免假帐户。是否可以? 最佳答案 是的, 跟随 youtube 记录的链接
我在使用Core Foundation Array时发现了一个奇怪的问题!这是代码片段 fname = CFStringCreateWithFormat(kCFAllocatorDefault, NU
有没有一种方法可以设置在 apache 下运行的 php 来创建文件夹,该文件夹的文件夹属于创建它的程序的所有者,而不是由 apache 拥有? 使用 word press 它会创建要上传到的新文件夹
我编写了以下函数来使用 boost.date_time 获取日期/时间字符串. namespace bpt = boost::posix_time; string get_date_time_stri
我在使用 Docker 容器时遇到了一个有点烦人的问题(我在 Ubuntu 上,所以没有像 VMWare 或 b2d 这样的虚拟化)。我已经构建了我的镜像,并且有一个正在运行的容器,它有一个来 sel
根据大多数示例,逻辑上最少有 3 个组织 ( org1, org2, orderer )。 实际上只有 2 个物理组织 ( org1, org2 )。任一组织或约定的第 3 方必须移交订购者组织的职责
我开始学习 Rust,在进行实验时,我发现所有权如何应用于我不理解的元组和数组的方式有所不同。基本上,以下代码显示了差异: #![allow(unused_variables)] struct Inn
我们有一个应用程序,其表单上有许多组件(面板、选项卡、编辑、组合框等)。但根据用户配置文件,其中大多数可以自动填充和/或不可见。因此,用户可以更快地完成工作。 问题:是否有更简单的方法可以在运行时创建
我有以下代码片段: fn f u32>(c: T) { println!("Hello {}", c()); } fn main() { let mut x = 32; let
我想执行示例中的代码: require_once 'google-api-php-client/vendor/autoload.php'; $client = new Google_C
这个问题在这里已经有了答案: What is move semantics? (11 个答案) 关闭 3 年前。 我有一个看起来像这样的构造函数: Thing::Thing(std::vector
我们正在使用服务帐户从服务器上传文件,但它已达到其存储配额限制。所有文件都已添加到另一个用户(具有 100 Gb 存储配额的 @gmail.com 帐户)创建的文件夹下,但上传的所有文件均归该服务帐户
我正处于 this question 中描述的 sme 情况。 .那个提问者找到的解决方案是 Full access !== Owner. I need to read the documentati
我正处于 this question 中描述的 sme 情况。 .那个提问者找到的解决方案是 Full access !== Owner. I need to read the documentati
我是一名优秀的程序员,十分优秀!