Meaning of PID, PPID and TGID [closed]

2019-02-04 08:45发布

问题:

What does the Linux kernel acronyms PID, PPID, TGID stand for?

I stumbled upon them at strace-pids.

回答1:

  • PID: Process Id
  • PPID: Parent Process Id (the one which launched this PID)
  • TGID: Thread Group Id

see this question for more details