Z+ 的结果是什么?在 ps 命令中?
我用这段代码创建了一个僵尸进程:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 ps 的手册页来看,更具体地说是进程状态代码:
当 shell 执行您的代码时,它将您的程序更改为单独的前台进程组。代码的每个子进程都与原始程序位于同一前台进程组中,因此即使父进程退出,子进程仍然位于前台进程组中,这就是您看到 + 的原因。
From the man page for ps, more specifically the process state codes:
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 +.