diff --git a/basis/unix/ffi/linux/linux.factor b/basis/unix/ffi/linux/linux.factor index 437280e819..ef00c233ce 100644 --- a/basis/unix/ffi/linux/linux.factor +++ b/basis/unix/ffi/linux/linux.factor @@ -235,3 +235,38 @@ CONSTANT: EKEYREVOKED 128 CONSTANT: EKEYREJECTED 129 CONSTANT: EOWNERDEAD 130 CONSTANT: ENOTRECOVERABLE 131 + +CONSTANT: SIGHUP 1 +CONSTANT: SIGINT 2 +CONSTANT: SIGQUIT 3 +CONSTANT: SIGILL 4 +CONSTANT: SIGTRAP 5 +CONSTANT: SIGABRT 6 +CONSTANT: SIGIOT 6 +CONSTANT: SIGBUS 7 +CONSTANT: SIGFPE 8 +CONSTANT: SIGKILL 9 +CONSTANT: SIGUSR1 10 +CONSTANT: SIGSEGV 11 +CONSTANT: SIGUSR2 12 +CONSTANT: SIGPIPE 13 +CONSTANT: SIGALRM 14 +CONSTANT: SIGTERM 15 +CONSTANT: SIGSTKFLT 16 +ALIAS: SIGCLD SIGCHLD +CONSTANT: SIGCHLD 17 +CONSTANT: SIGCONT 18 +CONSTANT: SIGSTOP 19 +CONSTANT: SIGTSTP 20 +CONSTANT: SIGTTIN 21 +CONSTANT: SIGTTOU 22 +CONSTANT: SIGURG 23 +CONSTANT: SIGXCPU 24 +CONSTANT: SIGXFSZ 25 +CONSTANT: SIGVTALRM 26 +CONSTANT: SIGPROF 27 +CONSTANT: SIGWINCH 28 +CONSTANT: SIGIO 29 +ALIAS: SIGPOLL SIGIO +CONSTANT: SIGPWR 30 +CONSTANT: SIGSYS 31 diff --git a/basis/unix/ffi/macosx/macosx.factor b/basis/unix/ffi/macosx/macosx.factor index 7c7c6d1430..5d7643c6db 100644 --- a/basis/unix/ffi/macosx/macosx.factor +++ b/basis/unix/ffi/macosx/macosx.factor @@ -227,3 +227,35 @@ CONSTANT: EPROTO 100 CONSTANT: ETIME 101 CONSTANT: EOPNOTSUPP 102 CONSTANT: ENOPOLICY 103 + +CONSTANT: SIGHUP 1 +CONSTANT: SIGINT 2 +CONSTANT: SIGQUIT 3 +CONSTANT: SIGILL 4 +CONSTANT: SIGTRAP 5 +CONSTANT: SIGABRT 6 +CONSTANT: SIGEMT 7 +CONSTANT: SIGFPE 8 +CONSTANT: SIGKILL 9 +CONSTANT: SIGBUS 10 +CONSTANT: SIGSEGV 11 +CONSTANT: SIGSYS 12 +CONSTANT: SIGPIPE 13 +CONSTANT: SIGALRM 14 +CONSTANT: SIGTERM 15 +CONSTANT: SIGURG 16 +CONSTANT: SIGSTOP 17 +CONSTANT: SIGTSTP 18 +CONSTANT: SIGCONT 19 +CONSTANT: SIGCHLD 20 +CONSTANT: SIGTTIN 21 +CONSTANT: SIGTTOU 22 +CONSTANT: SIGIO 23 +CONSTANT: SIGXCPU 24 +CONSTANT: SIGXFSZ 25 +CONSTANT: SIGVTALRM 26 +CONSTANT: SIGPROF 27 +CONSTANT: SIGWINCH 28 +CONSTANT: SIGINFO 29 +CONSTANT: SIGUSR1 30 +CONSTANT: SIGUSR2 31