Searched refs:CSIGNAL (Results 1 – 6 of 6) sorted by relevance
/linux/arch/sparc/kernel/ |
H A D | process.c | 73 .flags = (flags & ~CSIGNAL), in sparc_clone() 74 .exit_signal = (flags & CSIGNAL), in sparc_clone()
|
/linux/arch/nios2/kernel/ |
H A D | process.c | 258 .flags = (lower_32_bits(clone_flags) & ~CSIGNAL), in nios2_clone() 262 .exit_signal = (lower_32_bits(clone_flags) & CSIGNAL), in nios2_clone()
|
/linux/tools/perf/trace/beauty/include/uapi/linux/ |
H A D | sched.h | 10 #define CSIGNAL 0x000000ff /* signal mask to be sent at exit */ macro 41 * cloning flags intersect with CSIGNAL so can be used with unshare and clone3 50 * All flags are valid except for CSIGNAL and
|
/linux/include/uapi/linux/ |
H A D | sched.h | 10 #define CSIGNAL 0x000000ff /* signal mask to be sent at exit */ macro 41 * cloning flags intersect with CSIGNAL so can be used with unshare and clone3 50 * All flags are valid except for CSIGNAL and
|
/linux/arch/x86/kernel/ |
H A D | sys_ia32.c | 245 .flags = (clone_flags & ~CSIGNAL), in COMPAT_SYSCALL_DEFINE5() 249 .exit_signal = (clone_flags & CSIGNAL), in COMPAT_SYSCALL_DEFINE5()
|
/linux/kernel/ |
H A D | fork.c | 2545 CLONE_UNTRACED) & ~CSIGNAL), in create_io_thread() 2546 .exit_signal = (lower_32_bits(flags) & CSIGNAL), in create_io_thread() 2659 CLONE_UNTRACED) & ~CSIGNAL), in kernel_thread() 2660 .exit_signal = (lower_32_bits(flags) & CSIGNAL), in kernel_thread() 2677 CLONE_UNTRACED) & ~CSIGNAL), in user_mode_thread() 2678 .exit_signal = (lower_32_bits(flags) & CSIGNAL), in user_mode_thread() 2739 .flags = (lower_32_bits(clone_flags) & ~CSIGNAL), in SYSCALL_DEFINE5() 2743 .exit_signal = (lower_32_bits(clone_flags) & CSIGNAL), in SYSCALL_DEFINE5() 2790 if (unlikely((args.exit_signal & ~((u64)CSIGNAL)) || in copy_clone_args_from_user() 2858 * - make the CSIGNAL bit in clone3_args_valid() [all...] |