HomeSort by relevance Sort by last modified time
    Searched refs:NSIG (Results 1 - 25 of 45) sorted by null

1 2

  /external/strace/
nsig.h 6 #ifndef NSIG
7 # warning NSIG is not defined, using 32
8 # define NSIG 32
9 #elif NSIG < 32
10 # error NSIG < 32
13 #define NSIG_BYTES (NSIG / 8)
  /bionic/libc/bionic/
sys_siglist.c 31 const char* const sys_siglist[NSIG] = {
sys_signame.c 31 const char* const sys_signame[NSIG] = {
  /external/ltp/testcases/kernel/syscalls/sighold/
sighold02.c 53 /* _XOPEN_SOURCE disables NSIG */
54 #ifndef NSIG
55 # define NSIG _NSIG
64 # define NUMSIGS NSIG
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_sigmask/
18-1.c 173 #define NSIG (sizeof(signals)/sizeof(int))
195 j %= 2 * NSIG;
197 if (j >= NSIG)
198 ret = sigdelset(&set, signals[j - NSIG]);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
signal.h 21 #define NSIG 23
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
signalmodule.c 31 #define NSIG 12
35 #ifndef NSIG
37 # define NSIG _NSIG /* For BSD/SysV */
39 # define NSIG (_SIGMAX + 1) /* For QNX */
41 # define NSIG (SIGMAX + 1) /* For djgpp */
43 # define NSIG 64 /* Use a reasonable default value */
87 } Handlers[NSIG];
300 if (sig_num < 1 || sig_num >= NSIG) {
349 if (sig_num < 1 || sig_num >= NSIG) {
388 if (sig_num < 1 || sig_num >= NSIG) {
    [all...]
  /external/python/cpython2/Modules/
signalmodule.c 31 #define NSIG 12
35 #ifndef NSIG
37 # define NSIG _NSIG /* For BSD/SysV */
39 # define NSIG (_SIGMAX + 1) /* For QNX */
41 # define NSIG (SIGMAX + 1) /* For djgpp */
43 # define NSIG 64 /* Use a reasonable default value */
87 } Handlers[NSIG];
300 if (sig_num < 1 || sig_num >= NSIG) {
349 if (sig_num < 1 || sig_num >= NSIG) {
388 if (sig_num < 1 || sig_num >= NSIG) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
signalmodule.c 31 #define NSIG 12
35 #ifndef NSIG
37 # define NSIG _NSIG /* For BSD/SysV */
39 # define NSIG (_SIGMAX + 1) /* For QNX */
41 # define NSIG (SIGMAX + 1) /* For djgpp */
43 # define NSIG 64 /* Use a reasonable default value */
87 } Handlers[NSIG];
300 if (sig_num < 1 || sig_num >= NSIG) {
346 if (sig_num < 1 || sig_num >= NSIG) {
380 if (sig_num < 1 || sig_num >= NSIG) {
    [all...]
  /external/libevent/
signal.c 136 int ncaught[NSIG];
160 if (sig < NSIG)
166 for (i = 0; i < NSIG; ++i) {
283 EVUTIL_ASSERT(evsignal >= 0 && evsignal < NSIG);
363 EVUTIL_ASSERT(evsignal >= 0 && evsignal < NSIG);
424 for (i = 0; i < NSIG; ++i) {
  /bionic/libc/include/bits/
signal_types.h 50 /* Userspace's NSIG is the kernel's _NSIG + 1. */
52 #define NSIG _NSIG
  /external/kernel-headers/original/uapi/asm-arm/asm/
signal.h 13 #define NSIG 32
  /external/kernel-headers/original/uapi/asm-x86/asm/
signal.h 16 #define NSIG 32
  /external/python/cpython3/Modules/
signalmodule.c 43 #ifndef NSIG
45 # define NSIG _NSIG /* For BSD/SysV */
47 # define NSIG (_SIGMAX + 1) /* For QNX */
49 # define NSIG (SIGMAX + 1) /* For djgpp */
51 # define NSIG 64 /* Use a reasonable default value */
98 } Handlers[NSIG];
428 if (signalnum < 1 || signalnum >= NSIG) {
479 if (signalnum < 1 || signalnum >= NSIG) {
513 if (signalnum < 1 || signalnum >= NSIG) {
760 if (0 < signum && signum < NSIG)
    [all...]
faulthandler.c 93 #ifndef NSIG
95 # define NSIG _NSIG /* For BSD/SysV */
97 # define NSIG (_SIGMAX + 1) /* For QNX */
99 # define NSIG (SIGMAX + 1) /* For djgpp */
101 # define NSIG 64 /* Use a reasonable default value */
792 if (signum < 1 || NSIG <= signum) {
831 user_signals = PyMem_Malloc(NSIG * sizeof(user_signal_t));
834 memset(user_signals, 0, NSIG * sizeof(user_signal_t));
1126 for (signum=0; signum < NSIG; signum++)
    [all...]
  /external/valgrind/none/tests/
exec-sigmask.c 68 for(i = 1; i < NSIG; i++) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
signal.h 14 #define NSIG 32
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
signal.h 14 #define NSIG 32
  /external/ltp/lib/
tst_sig.c 117 for (sig = 1; sig < NSIG; sig++) {
  /external/valgrind/coregrind/
m_vki.c 83 vg_assert(_VKI_NSIG == NSIG);
  /external/honggfuzz/posix/
arch.c 54 } arch_sigs[NSIG] = {
55 [0 ...(NSIG - 1)].important = false,
56 [0 ...(NSIG - 1)].descr = "UNKNOWN",
  /external/python/cpython2/Lib/plat-irix6/
WAIT.py 300 NSIG = 65
301 MAXSIG = (NSIG-1)
302 NUMSIGS = (NSIG-1)
  /external/python/cpython3/Lib/test/test_asyncio/
test_unix_events.py 52 ValueError, self.loop._check_signal, signal.NSIG + 1)
55 self.loop._handle_signal(signal.NSIG + 1)
61 self.loop._signal_handlers[signal.NSIG + 1] = h
63 self.loop._handle_signal(signal.NSIG + 1)
64 self.loop.remove_signal_handler.assert_called_with(signal.NSIG + 1)
68 m_signal.NSIG = signal.NSIG
78 m_signal.NSIG = signal.NSIG
96 m_signal.NSIG = signal.NSI
    [all...]
  /external/ipsec-tools/src/racoon/
session.c 113 static volatile sig_atomic_t sigreq[NSIG + 1];
152 for (i = 0; i <= NSIG; i++)
413 for (sig = 0; sig <= NSIG; sig++) {
  /external/ltp/include/old/
test.h 71 * it is not defined, thus it is being set to UNICOS's NSIG.
72 * Note: IRIX's NSIG (signals are 1-(NSIG-1))
73 * is not same meaning as UNICOS/UMK's NSIG (signals 1-NSIG)
76 #define NUMSIGS NSIG

Completed in 855 milliseconds

1 2