Files
LNXSDK/Kha/Tools/macos_arm64/std/eval/luv/Pid.hx
2026-05-21 20:15:16 -07:00

18 lines
287 B
Haxe

package eval.luv;
/**
Process ids.
@see https://aantron.github.io/luv/luv/Luv/Pid
**/
extern class Pid {
/**
Evaluates to the pid of the current process.
**/
static function getPid():Int;
/**
Evaluates to the pid of the parent process.
**/
static function getPPid():Int;
}