gpt4 book ai didi

linux - 如何让父进程显示子进程的 PID 而不是值变量?

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

在linux中如何让父进程显示子进程的PID而不是值变量?

最佳答案

您获得子 PID 的机会是在您 fork 时。

Python:

import os

child_pid = os.fork()
if child_pid == 0:
print "This is the child, my pid is", os.getpid()
else:
print "This is the parent, my child pid is", child_pid

C:

pid_t child_pid = fork();
if (child_pid == 0) {
printf("This is the child, my pid is %d\n", getpid());
}
else {
printf("This is the parent, my child pid is %d\n", child_pid);
}

关于linux - 如何让父进程显示子进程的 PID 而不是值变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20599728/

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