HomeSort by relevance Sort by last modified time
    Searched defs:NSIG (Results 1 - 19 of 19) sorted by null

  /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/include/bits/
signal_types.h 50 /* Userspace's NSIG is the kernel's _NSIG + 1. */
52 #define NSIG _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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
signal.h 207 # define NSIG _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...]
  /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/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...]
  /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
  /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/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/python/cpython2/Lib/plat-irix6/
WAIT.py 300 NSIG = 65
301 MAXSIG = (NSIG-1)
302 NUMSIGS = (NSIG-1)
FILE.py 346 NSIG = 65
347 MAXSIG = (NSIG-1)
348 NUMSIGS = (NSIG-1)
  /external/python/cpython2/Lib/plat-sunos5/
IN.py 581 NSIG = 46
STROPTS.py 578 NSIG = 46
    [all...]

Completed in 828 milliseconds