commit 4380d79c06d7a596d762b121b0d329c791569466 parent 750f72667d9c1e436db2ce87290a0ee7292764c4 Author: Bor Grošelj Simić <bor.groseljsimic@telemach.net> Date: Fri, 25 Feb 2022 01:46:12 +0100 rt+freebsd: add waitpid option flags Signed-off-by: Bor Grošelj Simić <bor.groseljsimic@telemach.net> Diffstat:
M | rt/+freebsd/types.ha | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/rt/+freebsd/types.ha b/rt/+freebsd/types.ha @@ -406,3 +406,11 @@ export def CLOCK_MONOTONIC_FAST: int = 12; export def CLOCK_SECOND: int = 13; export def CLOCK_THREAD_CPUTIME_ID: int = 14; export def CLOCK_PROCESS_CPUTIME_ID: int = 15; + +export def WNOHANG: int = 1; +export def WUNTRACED: int = 2; +export def WSTOPPED: int = WUNTRACED; +export def WCONTINUED: int = 4; +export def WNOWAIT: int = 8; +export def WEXITED: int = 16; +export def WTRAPPED: int = 32;