Z+ 的结果是什么?在 ps 命令中?

发布于 2024-12-09 07:52:54 字数 282 浏览 0 评论 0原文

我用这段代码创建了一个僵尸进程:

pid_t child; cout<<getpid(); child=fork(); if (child>0) sleep(60); else exit(0);

我正在使用这个命令:

ps -e -o pid,ppid,stat,command

没问题,但我希望在我的进程(stat)前面看到 Z,但它是 Z+,这是什么意思?

i made a zombie process with this code :

pid_t child; cout<<getpid(); child=fork(); if (child>0) sleep(60); else exit(0);

and i'm using this command :

ps -e -o pid,ppid,stat,command

it's okey , but i expect see Z in front of my process(stat) but it's Z+ , what thats mean ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撑一把青伞 2024-12-16 07:52:54

从 ps 的手册页来看,更具体地说是进程状态代码:

Z    defunct ("zombie") process, terminated but not reaped by its parent.
+    is in the foreground process group.

当 shell 执行您的代码时,它将您的程序更改为单独的前台进程组。代码的每个子进程都与原始程序位于同一前台进程组中,因此即使父进程退出,子进程仍然位于前台进程组中,这就是您看到 + 的原因。

From the man page for ps, more specifically the process state codes:

Z    defunct ("zombie") process, terminated but not reaped by its parent.
+    is in the foreground process group.

When the shell executes your code, it changes your program to a separate foreground process group. Every child of your code is in the same foreground process group as the original program, so even once the parent exits, the child is still in the foreground process group which is why you see the +.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文