/third_party/ltp/testcases/kernel/syscalls/sighold/ |
H A D | sighold02.c | 23 #ifndef NSIG 24 # define NSIG _NSIG macro 28 # define NUMSIGS NSIG
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_sigmask/ |
H A D | 18-1.c | 163 #define NSIG (sizeof(signals)/sizeof(int)) in test() macro 185 j %= 2 * NSIG; in test() 187 if (j >= NSIG) in test() 188 ret = sigdelset(&set, signals[j - NSIG]); in test()
|
/third_party/python/Include/internal/ |
H A D | pycore_signal.h | 13 #include <signal.h> // NSIG 16 // gh-91145: On FreeBSD, <signal.h> defines NSIG as 32: it doesn't include 20 #elif defined(NSIG) 21 # define Py_NSIG NSIG
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_unix_events.py | 67 ValueError, self.loop._check_signal, signal.NSIG + 1) 70 self.loop._handle_signal(signal.NSIG + 1) 76 self.loop._signal_handlers[signal.NSIG + 1] = h 78 self.loop._handle_signal(signal.NSIG + 1) 79 self.loop.remove_signal_handler.assert_called_with(signal.NSIG + 1) 83 m_signal.NSIG = signal.NSIG 94 m_signal.NSIG = signal.NSIG 111 m_signal.NSIG [all...] |
/third_party/libunwind/libunwind/src/setjmp/ |
H A D | siglongjmp.c | 37 # elif defined(NSIG) 38 # define _NSIG NSIG
|
/third_party/libuv/include/uv/ |
H A D | win.h | 98 /* Redefine NSIG to take SIGWINCH into consideration */ 99 #if defined(NSIG) && NSIG <= SIGWINCH 100 # undef NSIG macro 102 #ifndef NSIG 103 # define NSIG SIGWINCH + 1 macro
|
/third_party/node/deps/uv/include/uv/ |
H A D | win.h | 97 /* Redefine NSIG to take SIGWINCH into consideration */ 98 #if defined(NSIG) && NSIG <= SIGWINCH 99 # undef NSIG macro 101 #ifndef NSIG 102 # define NSIG SIGWINCH + 1 macro
|
/third_party/pulseaudio/src/tests/ |
H A D | sig2str-test.c | 103 for (sig = -1; sig <= NSIG; sig++) { in START_TEST()
|
/third_party/musl/libc-test/src/functionalext/supplement/signal/signal_gtest/ |
H A D | signal_sigaddset_test.cpp | 50 EXPECT_EQ(-1, sigaddset(&set, NSIG + 1)); in HWTEST_F()
|
/third_party/mksh/ |
H A D | Build.sh | 2415 #elif defined(NSIG) 2416 #define cfg_NSIG NSIG 2431 NSIG=`vq "$CPP $CFLAGS $CPPFLAGS $NOWARN conftest.c" | \ 2439 case $NSIG in 2440 *mksh_cfg*) $e "Error: NSIG='$NSIG'"; NSIG=0 ;; 2441 *[\ \(\)+-]*) NSIG=`"$AWK" "BEGIN { print $NSIG }" </dev/null` ;; 2446 test $printf = echo || NSIG [all...] |
/third_party/ltp/lib/ |
H A D | tst_sig.c | 118 for (sig = 1; sig < NSIG; sig++) { in tst_sig()
|
/third_party/python/Lib/test/ |
H A D | test_signal.py | 120 self.assertNotIn(signal.NSIG, s) 121 self.assertLess(len(s), signal.NSIG) 124 # signal module have a number in the [0; signal.NSIG-1] range. 134 self.assertLess(signum, signal.NSIG) 163 self.assertNotIn(signal.NSIG, s) 164 self.assertLess(len(s), signal.NSIG) 1079 signal.pthread_sigmask(signal.SIG_BLOCK, [signal.NSIG])
|
/third_party/ltp/include/old/ |
H A D | test.h | 45 * it is not defined, thus it is being set to UNICOS's NSIG. 46 * Note: IRIX's NSIG (signals are 1-(NSIG-1)) 47 * is not same meaning as UNICOS/UMK's NSIG (signals 1-NSIG) 50 #define NUMSIGS NSIG
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | signal.h | 203 #define NSIG _NSIG macro
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/android/ |
H A D | AngleNativeTest.cpp | 31 struct sigaction g_old_sa[NSIG];
|
/third_party/libuv/test/ |
H A D | test-signal.c | 36 /* NSIG is not available on all platforms. */ in TEST_IMPL() 37 ASSERT_EQ(uv_kill(pid, NSIG), UV_EINVAL); in TEST_IMPL() 70 ASSERT_EQ(uv_signal_start(&signal, signum_test_cb, NSIG), UV_EINVAL); in TEST_IMPL()
|
/third_party/libuv/src/win/ |
H A D | signal.c | 198 if (signum <= 0 || signum >= NSIG) in uv__signal_start()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | signal.h | 256 #define NSIG _NSIG macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | signal.h | 256 #define NSIG _NSIG macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | signal.h | 256 #define NSIG _NSIG macro
|
/third_party/musl/porting/linux/user/include/ |
H A D | signal.h | 279 #define NSIG _NSIG macro
|
/third_party/musl/include/ |
H A D | signal.h | 278 #define NSIG _NSIG macro
|
/third_party/node/deps/uv/src/win/ |
H A D | signal.c | 198 if (signum <= 0 || signum >= NSIG) in uv__signal_start()
|
/third_party/rust/crates/libc/src/unix/newlib/horizon/ |
H A D | mod.rs | 120 pub const NSIG: ::c_int = 32; consts
|
/third_party/ltp/testcases/kernel/syscalls/sigrelse/ |
H A D | sigrelse01.c | 174 #define NUMSIGS NSIG
|