gpt4 book ai didi

Python multiprocessing Process PID与实际PID不同

转载 作者:太空宇宙 更新时间:2023-11-03 12:06:44 26 4
gpt4 key购买 nike

这是我的代码。我正在尝试创建 n(此处为 10)个进程,并试图查看它们的 PIDS。当我打印它们并在终端中验证 PID 时,它们并不相同。编辑:如果有帮助,我正在 Mac(优胜美地)上运行它。

for proc in xrange(10):
worker_process = Process (name="worker_process", target=worker_code, args=(proc, tree_space, self.simulator, mgr_nms))
process_q.append(worker_process)
worker_process.start()
print worker_process.pid

我的输出:

60484
60485
60486
60487
60488
60489
60490
60491
60493
60494

终端输出(顶部):

(图像)-> http://postimg.org/image/kkiboom6l/

关于这是为什么的任何指示? (抱歉,如果我遗漏了如此明显的东西。)

最佳答案

我在您的屏幕截图中看到两个 PPID(父 PID):60480 和 60481(最右侧)。

你确定你没有运行你的程序两次吗?屏幕截图被截断了,但我猜如果您确实运行了两次代码,您会在那里看到 20 个 Python 进程。

我已经从该屏幕截图中计算出总共有 14 个 Python 进程,这里最多应该有 11 个。

编辑:

实际上 60481 的 PPID 是 60480。所以看起来您只运行了一次该程序,但生成进程(使用 Process())早于您在此处提供的代码。这很可能是您问题的根源。

关于Python multiprocessing Process PID与实际PID不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30020325/

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