18 lines
287 B
Haxe
Raw Normal View History

2025-01-22 16:18:30 +01:00
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;
}