linux_rust_bindings/signal/
signal_arm64.rs1pub const SA_RESTORER: i32 = 67108864;
4pub const SIGSTKSZ: i32 = 16384;
5pub const SIGHUP: i32 = 1;
6pub const SIGINT: i32 = 2;
7pub const SIGQUIT: i32 = 3;
8pub const SIGILL: i32 = 4;
9pub const SIGTRAP: i32 = 5;
10pub const SIGABRT: i32 = 6;
11pub const SIGIOT: i32 = 6;
12pub const SIGBUS: i32 = 7;
13pub const SIGFPE: i32 = 8;
14pub const SIGKILL: i32 = 9;
15pub const SIGUSR1: i32 = 10;
16pub const SIGSEGV: i32 = 11;
17pub const SIGUSR2: i32 = 12;
18pub const SIGPIPE: i32 = 13;
19pub const SIGALRM: i32 = 14;
20pub const SIGTERM: i32 = 15;
21pub const SIGSTKFLT: i32 = 16;
22pub const SIGCHLD: i32 = 17;
23pub const SIGCONT: i32 = 18;
24pub const SIGSTOP: i32 = 19;
25pub const SIGTSTP: i32 = 20;
26pub const SIGTTIN: i32 = 21;
27pub const SIGTTOU: i32 = 22;
28pub const SIGURG: i32 = 23;
29pub const SIGXCPU: i32 = 24;
30pub const SIGXFSZ: i32 = 25;
31pub const SIGVTALRM: i32 = 26;
32pub const SIGPROF: i32 = 27;
33pub const SIGWINCH: i32 = 28;
34pub const SIGIO: i32 = 29;
35pub const SIGPOLL: i32 = 29;
36pub const SIGPWR: i32 = 30;
37pub const SIGSYS: i32 = 31;
38pub const SIGUNUSED: i32 = 31;
39pub const SIGRTMIN: i32 = 32;
40pub const SIGRTMAX: i32 = 64;
41pub const SA_NOCLDSTOP: i32 = 1;
42pub const SA_NOCLDWAIT: i32 = 2;
43pub const SA_SIGINFO: i32 = 4;
44pub const SA_UNSUPPORTED: i32 = 1024;
45pub const SA_EXPOSE_TAGBITS: i32 = 2048;
46pub const SA_ONSTACK: i32 = 134217728;
47pub const SA_RESTART: i32 = 268435456;
48pub const SA_NODEFER: i32 = 1073741824;
49pub const SA_RESETHAND: i64 = 2147483648;
50pub const SA_NOMASK: i32 = 1073741824;
51pub const SA_ONESHOT: i64 = 2147483648;
52pub const SIG_BLOCK: i32 = 0;
53pub const SIG_UNBLOCK: i32 = 1;
54pub const SIG_SETMASK: i32 = 2;
55pub const SIGEV_SIGNAL: i32 = 0;
56pub const SIGEV_NONE: i32 = 1;
57pub const SIGEV_THREAD: i32 = 2;
58pub const SIGEV_THREAD_ID: i32 = 4;
59pub const SIGEV_MAX_SIZE: i32 = 64;
60pub type __signalfn_t = ::core::option::Option<unsafe extern "C" fn(arg1: ::core::ffi::c_int)>;
61pub type __sighandler_t = __signalfn_t;
62pub type __restorefn_t = ::core::option::Option<unsafe extern "C" fn()>;
63pub type __sigrestore_t = __restorefn_t;