linux_rust_bindings/signal/
signal_x86.rs

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