📄 sigprocmask.c
字号:
/* vi: set sw=4 ts=4: *//* * sigprocmask() for uClibc * * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org> * * GNU Library General Public License (LGPL) version 2 or later. */#include "syscalls.h"#include <signal.h>#undef sigprocmask#ifdef __NR_rt_sigprocmask#define __NR___rt_sigprocmask __NR_rt_sigprocmask_syscall4(int, __rt_sigprocmask, int, how, const sigset_t *, set, sigset_t *, oldset, size_t, size);int sigprocmask(int how, const sigset_t * set, sigset_t * oldset){ if (set &&#if (SIG_BLOCK == 0) && (SIG_UNBLOCK == 1) && (SIG_SETMASK == 2) (((unsigned int) how) > 2)#else#warning "compile time assumption violated.. slow path..." ((how != SIG_BLOCK) && (how != SIG_UNBLOCK) && (how != SIG_SETMASK))#endif ) { __set_errno(EINVAL); return -1; } return __rt_sigprocmask(how, set, oldset, _NSIG / 8);}#else#define __NR___syscall_sigprocmask __NR_sigprocmaskstatic inline_syscall3(int, __syscall_sigprocmask, int, how, const sigset_t *, set, sigset_t *, oldset);int sigprocmask(int how, const sigset_t * set, sigset_t * oldset){ if (set &&#if (SIG_BLOCK == 0) && (SIG_UNBLOCK == 1) && (SIG_SETMASK == 2) (((unsigned int) how) > 2)#else#warning "compile time assumption violated.. slow path..." ((how != SIG_BLOCK) && (how != SIG_UNBLOCK) && (how != SIG_SETMASK))#endif ) { __set_errno(EINVAL); return -1; } return (__syscall_sigprocmask(how, set, oldset));}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -