Searched refs:MAX_SIG_NUM (Results 1 – 5 of 5) sorted by relevance
/DragonOS-0.1.2/kernel/src/include/DragonOS/ |
D | signal.h | 19 #define MAX_SIG_NUM 64 macro 21 #define _NSIG_U64_CNT (MAX_SIG_NUM / 64) 65 #define SIGRTMAX MAX_SIG_NUM 135 struct sigaction action[MAX_SIG_NUM];
|
/DragonOS-0.1.2/kernel/src/process/ |
D | initial_proc.rs | 10 use crate::ipc::signal_types::{sighand_struct, signal_struct, MAX_SIG_NUM}; 23 action: [DEFAULT_SIGACTION; MAX_SIG_NUM as usize],
|
/DragonOS-0.1.2/user/libs/libc/src/include/ |
D | signal.h | 41 #define SIGRTMAX MAX_SIG_NUM
|
/DragonOS-0.1.2/kernel/src/ipc/ |
D | signal_types.rs | 30 pub const MAX_SIG_NUM: i32 = 64; constant 32 pub const _NSIG_U64_CNT: i32 = MAX_SIG_NUM / 64; 232 pub action: [sigaction; MAX_SIG_NUM as usize], 240 action: [Default::default(); MAX_SIG_NUM as usize], in default() 358 if x > 0 && x < MAX_SIG_NUM { in valid_signal_number() 369 pub const SIGRTMAX: i32 = MAX_SIG_NUM;
|
D | signal.rs | 32 sigset_equal, sigset_init, sigset_t, SigQueue, SignalNumber, MAX_SIG_NUM, SA_ALL_FLAGS, 135 return if (sig as i32) <= MAX_SIG_NUM { in verify_signal()
|