Linux PID、PPID、TGID的含义
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/14342773/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-06 18:40:37 来源:igfitidea点击:
Meaning of PID, PPID and TGID
提问by Nordl?w
What does the Linux kernel acronyms PID, PPID, TGID stand for?
Linux 内核首字母缩略词 PID、PPID、TGID 代表什么?
I stumbled upon them at strace-pids.
我在strace-pids偶然发现了它们。
采纳答案by aldrinleal
- PID: Process Id
- PPID: Parent Process Id (the one which launched this PID)
- TGID: Thread Group Id
- PID:进程 ID
- PPID:父进程 ID(启动此 PID 的进程 ID)
- TGID:线程组 ID
see this questionfor more details
有关更多详细信息,请参阅此问题