Module Luv__.Pid
val getpid : unit -> int
Evaluates to the pid of the current process.
Binds
uv_os_getpid
. Seegetpid(3p)
.Requires libuv 1.18.0.
Feature check:
Luv.Require.(has os_getpid)
val getppid : unit -> int
Evaluates to the pid of the parent process.
Binds
uv_os_getppid
. Seegetppid(3p)
.Requires libuv 1.16.0.
Feature check:
Luv.Require.(has os_getppid)