diff options
| author | jason <jkercher43@gmail.com> | 2024-08-09 09:16:44 -0400 |
|---|---|---|
| committer | jason <jkercher43@gmail.com> | 2024-08-09 09:16:44 -0400 |
| commit | c4d43bbab081ae1480be8f07f88572d8315bd94a (patch) | |
| tree | 1860196354a8870be61c43605f533069475e0f02 /core/sys/linux | |
| parent | c3ba8fbd094654fd6bd4695027dcd843d3b9306a (diff) | |
os2 linux process_wait rework; add Sig_Child_Code to sys/linux bits
Diffstat (limited to 'core/sys/linux')
| -rw-r--r-- | core/sys/linux/bits.odin | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/core/sys/linux/bits.odin b/core/sys/linux/bits.odin index e10edf558..b8ec3c133 100644 --- a/core/sys/linux/bits.odin +++ b/core/sys/linux/bits.odin @@ -984,6 +984,20 @@ Sig_Action_Flag :: enum u32 { } /* + Translation of code in Sig_Info for when signo is SIGCHLD +*/ +Sig_Child_Code :: enum { + NONE, + EXITED, + KILLED, + DUMPED, + TRAPPED, + STOPPED, + CONTINUED, +} + + +/* Type of socket to create - For TCP you want to use SOCK_STREAM - For UDP you want to use SOCK_DGRAM |