ProcessExit.hx 331 B

12345678910111213141516
  1. package asys;
  2. /**
  3. Represents how a process exited.
  4. **/
  5. typedef ProcessExit = {
  6. /**
  7. Exit code of the process. Non-zero values usually indicate an error.
  8. Specific meanings of exit codes differ from program to program.
  9. **/
  10. var code:Int;
  11. /**
  12. Signal that cause the process to exit, or zero if none.
  13. **/
  14. var signal:Int;
  15. };