Function sigrtmin [src]

Zig's SIGRTMIN, but is a function for compatibility with glibc

Prototype

pub fn sigrtmin() u8

Source

pub fn sigrtmin() u8 { // Default is 32 in the kernel UAPI: https://github.com/torvalds/linux/blob/78109c591b806e41987e0b83390e61d675d1f724/include/uapi/asm-generic/signal.h#L50 // AFAICT, all architectures that override this also set it to 32: // https://github.com/search?q=repo%3Atorvalds%2Flinux+sigrtmin+path%3Auapi&type=code return 32; }