Skip to content

ps_ppid() returns the parent pid, ps_parent() returns a ps_handle of the parent.

Usage

ps_ppid(p = ps_handle())

ps_parent(p = ps_handle())

Arguments

p

Process handle.

Value

ps_ppid() returns and integer scalar, the pid of the parent of p. ps_parent() returns a ps_handle.

Details

On POSIX systems, if the parent process terminates, another process (typically the pid 1 process) is marked as parent. ps_ppid() and ps_parent() will return this process then.

Both ps_ppid() and ps_parent() work for zombie processes.

Examples

p <- ps_handle()
p
#> <ps::ps_handle> PID=7259, NAME=R, AT=2025-02-19 12:08:45.63
ps_ppid(p)
#> [1] 1747
ps_parent(p)
#> <ps::ps_handle> PID=1747, NAME=Runner.Worker, AT=2025-02-19 12:07:26.24