Files
c3c/lib/std/libc/os/generic_bsd.c3
Jasper Wilmes 8a1c02c840 Rework libc signal constants (#2724)
* 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>
2026-01-15 21:17:50 +01:00

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;