Pid.hx 287 B

123456789101112131415161718
  1. package eval.luv;
  2. /**
  3. Process ids.
  4. @see https://aantron.github.io/luv/luv/Luv/Pid
  5. **/
  6. extern class Pid {
  7. /**
  8. Evaluates to the pid of the current process.
  9. **/
  10. static function getPid():Int;
  11. /**
  12. Evaluates to the pid of the parent process.
  13. **/
  14. static function getPPid():Int;
  15. }