Symbol: sigprocmask
arch/alpha/kernel/signal.c
51
res = sigprocmask(how, &mask, &oldmask);
arch/um/drivers/chan_user.c
119
sigprocmask(SIG_SETMASK, &old, NULL);
arch/um/drivers/chan_user.c
182
if (sigprocmask(SIG_SETMASK, &sigs, NULL) < 0) {
arch/um/drivers/chan_user.c
95
if (sigprocmask(SIG_BLOCK, &no_sigio, &old))
arch/um/os-Linux/helper.c
193
if (sigprocmask(SIG_SETMASK, &sigset, &oset) < 0) {
arch/um/os-Linux/helper.c
201
if (sigprocmask(SIG_SETMASK, &oset, NULL) < 0)
arch/um/os-Linux/signal.c
244
if (sigprocmask(SIG_UNBLOCK, &sig_mask, NULL) < 0)
arch/um/os-Linux/signal.c
259
if (sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, NULL) < 0)
arch/um/os-Linux/smp.c
106
if (sigprocmask(enable ? SIG_UNBLOCK : SIG_BLOCK, &sigset, NULL) < 0)
arch/um/os-Linux/smp.c
53
if (sigprocmask(SIG_SETMASK, &sigset, &oset) < 0) {
arch/um/os-Linux/smp.c
62
if (sigprocmask(SIG_SETMASK, &oset, NULL) < 0)
arch/um/os-Linux/smp.c
81
if (sigprocmask(SIG_SETMASK, &data->sigset, NULL) < 0)
arch/um/os-Linux/time.c
146
sigprocmask(SIG_BLOCK, &set, NULL);
arch/um/os-Linux/time.c
156
sigprocmask(SIG_UNBLOCK, &set, NULL);
arch/um/os-Linux/util.c
92
sigprocmask(SIG_UNBLOCK, &sig, 0);
drivers/mfd/ab8500-sysctrl.c
85
if (!sigprocmask(SIG_BLOCK, &all, &old)) {
drivers/mfd/ab8500-sysctrl.c
89
(void)sigprocmask(SIG_SETMASK, &old, NULL);
fs/ceph/addr.c
1965
sigprocmask(SIG_BLOCK, &mask, oldset);
fs/ceph/addr.c
1970
sigprocmask(SIG_SETMASK, oldset, NULL);
fs/jffs2/background.c
152
sigprocmask(SIG_BLOCK, &hupmask, NULL);
fs/jffs2/background.c
92
sigprocmask(SIG_UNBLOCK, &hupmask, NULL);
fs/ocfs2/super.c
2563
rc = sigprocmask(SIG_BLOCK, &blocked, oldset);
fs/ocfs2/super.c
2569
int rc = sigprocmask(SIG_SETMASK, oldset, NULL);
fs/smb/client/transport.c
287
sigprocmask(SIG_BLOCK, &mask, &oldmask);
fs/smb/client/transport.c
334
sigprocmask(SIG_SETMASK, &oldmask, NULL);
include/linux/signal.h
288
extern int sigprocmask(int, sigset_t *, sigset_t *);
kernel/compat.c
40
COMPAT_SYSCALL_DEFINE3(sigprocmask, int, how,
kernel/signal.c
3271
EXPORT_SYMBOL(sigprocmask);
kernel/signal.c
3345
error = sigprocmask(how, &new_set, NULL);
kernel/signal.c
3375
error = sigprocmask(how, &new_set, NULL);
kernel/signal.c
4591
SYSCALL_DEFINE3(sigprocmask, int, how, old_sigset_t __user *, nset,
samples/bpf/xdp_sample_user.c
1249
if (sigprocmask(SIG_BLOCK, &st, NULL) < 0)
samples/seccomp/bpf-direct.c
104
if (sigprocmask(SIG_UNBLOCK, &mask, NULL)) {
tools/accounting/getdelays.c
551
sigprocmask(SIG_BLOCK, &sigset, NULL);
tools/perf/builtin-daemon.c
1238
if (sigprocmask(SIG_BLOCK, &mask, NULL) == -1)
tools/perf/builtin-record.c
2341
if (sigprocmask(SIG_SETMASK, &full, &mask)) {
tools/perf/builtin-record.c
2382
if (sigprocmask(SIG_SETMASK, &mask, NULL)) {
tools/perf/builtin-stat.c
1126
sigprocmask(SIG_BLOCK, &set, &oset);
tools/perf/builtin-stat.c
1131
sigprocmask(SIG_SETMASK, &oset, NULL);
tools/perf/tests/builtin-test.c
901
sigprocmask(SIG_BLOCK, &set, &oldset);
tools/perf/tests/builtin-test.c
908
sigprocmask(SIG_SETMASK, &oldset, NULL);
tools/perf/tests/builtin-test.c
915
sigprocmask(SIG_SETMASK, &oldset, NULL);
tools/perf/tests/builtin-test.c
927
sigprocmask(SIG_SETMASK, &oldset, NULL);
tools/power/x86/intel-speed-select/isst-daemon.c
164
sigprocmask(SIG_BLOCK, &sig_set, NULL);
tools/testing/selftests/arm64/bti/signal.h
19
int sigprocmask(int how, const sigset_t *mask, sigset_t *old);
tools/testing/selftests/arm64/bti/test.c
211
sigprocmask(SIG_UNBLOCK, &sa.sa_mask, NULL);
tools/testing/selftests/arm64/signal/test_signals_utils.c
65
sigprocmask(SIG_UNBLOCK, &sset, NULL);
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
3178
sigprocmask(SIG_SETMASK, &sigmask, NULL);
tools/testing/selftests/membarrier/membarrier_rseq_stress.c
521
sigprocmask(SIG_BLOCK, &mask, NULL);
tools/testing/selftests/membarrier/membarrier_rseq_stress.c
784
sigprocmask(SIG_BLOCK, &sigmask, NULL);
tools/testing/selftests/membarrier/membarrier_rseq_stress.c
801
sigprocmask(SIG_UNBLOCK, &sigmask, NULL);
tools/testing/selftests/mm/protection_keys.c
429
rs = sigprocmask(SIG_SETMASK, 0, &newact.sa_mask);
tools/testing/selftests/net/af_unix/msg_oob.c
106
ret = sigprocmask(SIG_BLOCK, &mask, NULL);
tools/testing/selftests/powerpc/mm/exec_prot.c
122
FAIL_IF(sigprocmask(SIG_SETMASK, 0, &segv_act.sa_mask) != 0);
tools/testing/selftests/powerpc/mm/exec_prot.c
130
FAIL_IF(sigprocmask(SIG_SETMASK, 0, &trap_act.sa_mask) != 0);
tools/testing/selftests/powerpc/mm/pkey_exec_prot.c
115
FAIL_IF(sigprocmask(SIG_SETMASK, 0, &segv_act.sa_mask) != 0);
tools/testing/selftests/powerpc/mm/pkey_exec_prot.c
123
FAIL_IF(sigprocmask(SIG_SETMASK, 0, &trap_act.sa_mask) != 0);
tools/testing/selftests/powerpc/mm/pkey_siginfo.c
272
FAIL_IF(sigprocmask(SIG_SETMASK, 0, &act.sa_mask) != 0);
tools/testing/selftests/ptrace/peeksiginfo.c
161
sigprocmask(SIG_BLOCK, &blockmask, NULL);
tools/testing/selftests/seccomp/seccomp_bpf.c
1152
ret = sigprocmask(SIG_UNBLOCK, &mask, NULL);
tools/testing/selftests/signal/mangle_uc_sigmask.c
177
if (sigprocmask(SIG_BLOCK, &set, &oldset))
tools/testing/selftests/timers/posix_timers.c
257
if (sigprocmask(SIG_BLOCK, &set, NULL))
tools/testing/selftests/timers/posix_timers.c
263
if (sigprocmask(SIG_UNBLOCK, &set, NULL))
tools/testing/selftests/timers/posix_timers.c
294
if (sigprocmask(SIG_BLOCK, &set, NULL))
tools/testing/selftests/timers/posix_timers.c
339
if (sigprocmask(SIG_UNBLOCK, &set, NULL))
tools/testing/selftests/timers/posix_timers.c
372
if (sigprocmask(SIG_BLOCK, &set, NULL))
tools/testing/selftests/timers/posix_timers.c
401
if (sigprocmask(SIG_UNBLOCK, &set, NULL))
tools/testing/selftests/timers/posix_timers.c
428
if (sigprocmask(SIG_BLOCK, &set, NULL))
tools/testing/selftests/timers/posix_timers.c
452
if (sigprocmask(SIG_UNBLOCK, &set, NULL))
tools/testing/selftests/timers/posix_timers.c
508
if (sigprocmask(SIG_BLOCK, &set, NULL))
tools/testing/selftests/timers/posix_timers.c
568
if (sigprocmask(SIG_BLOCK, &set, NULL))
tools/testing/selftests/timers/posix_timers.c
595
if (sigprocmask(SIG_UNBLOCK, &set, NULL))
tools/testing/selftests/uevent/uevent_filtering.c
255
ret = sigprocmask(SIG_BLOCK, &mask, &orig_mask);
tools/thermal/thermometer/thermometer.c
502
if (sigprocmask(SIG_BLOCK, &mask, NULL)) {
virt/kvm/kvm_main.c
3568
sigprocmask(SIG_SETMASK, &vcpu->sigset, &current->real_blocked);
virt/kvm/kvm_main.c
3576
sigprocmask(SIG_SETMASK, &current->real_blocked, NULL);