mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
* Move libc::SIG* constants to posix.c3 * Add missing libc::SIG* constants for Win32 systems * Add missing POSIX signals * Add missing Linux signals * Add missing BSD signals * Moved common signals back to libc --------- Co-authored-by: Christoffer Lerno <christoffer@aegik.com>
9 lines
194 B
Plaintext
9 lines
194 B
Plaintext
module libc @if(env::DARWIN ||| env::BSD_FAMILY);
|
|
|
|
const CInt SIGIOT = 6;
|
|
const CInt SIGEMT = 7;
|
|
const CInt SIGIO = 23;
|
|
const CInt SIGPROF = 27;
|
|
const CInt SIGINFO = 29;
|
|
const CInt SIGTHR = 32;
|