| /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/ |
| H A D | restore_sigalarm.patch | 19 - signal(SIGALRM, timeout); 20 + /* Save SIGALRM timer and handler. Sudheer Abdul-Salam, SUN. */ 25 + (void) sigaction(SIGALRM, &nact, &oact); 33 + /* Restore SIGALRM timer and handler. Sudheer Abdul-Salam, SUN. */ 34 + (void) sigaction(SIGALRM, &oact, NULL);
|
| /OK3568_Linux_fs/kernel/arch/um/os-Linux/ |
| H A D | signal.c | 94 timer_handler(SIGALRM, NULL, ®s); in timer_real_alarm_handler() 119 timer_alarm_handler(SIGALRM, NULL, NULL); in deliver_alarm() 124 set_handler(SIGALRM); in timer_set_signal_handler() 158 [SIGALRM] = timer_alarm_handler, 218 sigaddset(&action.sa_mask, SIGALRM); in set_handler()
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/tests/ |
| H A D | test_decorators.py | 121 alarm_signal = signal.getsignal(signal.SIGALRM) 125 self.assertIs(alarm_signal, signal.getsignal(signal.SIGALRM), msg=msg) 130 alarm_signal = signal.getsignal(signal.SIGALRM) 134 self.assertIs(alarm_signal, signal.getsignal(signal.SIGALRM), msg=msg)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/decorator/ |
| H A D | oetimeout.py | 22 self.alarmSignal = signal.signal(signal.SIGALRM, _timeoutHandler) 28 signal.signal(signal.SIGALRM, self.alarmSignal)
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/ |
| H A D | signal_pending.c | 29 err = sigaction(SIGALRM, &sigalrm_action, NULL); in test_signal_pending_by_type() 42 signal(SIGALRM, SIG_DFL); in test_signal_pending_by_type()
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/ |
| H A D | decorators.py | 230 prev_handler = signal.signal(signal.SIGALRM, raiseTimeOut) 236 signal.signal(signal.SIGALRM, prev_handler) 287 prev_handler = signal.signal(signal.SIGALRM, raiseTimeOut) 293 signal.signal(signal.SIGALRM, prev_handler)
|
| /OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/src/ |
| H A D | fstime.c | 275 signal(SIGALRM, stop_count); in w_test() 332 signal(SIGALRM, stop_count); in r_test() 396 signal(SIGALRM, stop_count); in c_test()
|
| H A D | timeit.c | 37 signal(SIGALRM, func);
|
| H A D | dummy.c | 192 signal(SIGALRM, onalarm); 274 signal(SIGALRM, onalarm); in onalarm()
|
| /OK3568_Linux_fs/kernel/Documentation/translations/zh_CN/admin-guide/ |
| H A D | cpu-load.rst | 75 signal (SIGALRM, &sighandler); 85 sigaddset (&set, SIGALRM);
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/benchmarks/ |
| H A D | null_syscall.c | 49 signal(SIGALRM, sigalrm_handler); in cpu_soak_usecs() 57 signal(SIGALRM, SIG_DFL); in cpu_soak_usecs()
|
| H A D | context_switch.c | 184 signal(SIGALRM, sigalrm_handler); in pipe_thread1() 229 signal(SIGALRM, sigalrm_handler); in yield_thread1() 359 signal(SIGALRM, sigalrm_handler); in futex_thread1()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/map_tests/ |
| H A D | sk_storage_map.c | 390 if (signum != SIGALRM) in stop_handler() 410 signal(SIGALRM, stop_handler); in test_sk_storage_map_stress_free() 427 signal(SIGALRM, SIG_DFL); in test_sk_storage_map_stress_free() 444 signal(SIGALRM, stop_handler); in test_sk_storage_map_stress_change() 453 signal(SIGALRM, SIG_DFL); in test_sk_storage_map_stress_change()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/timers/ |
| H A D | posix_timers.c | 103 signal(SIGALRM, sig_handler); in check_itimer() 161 signal(SIGALRM, sig_handler); in check_timer_create()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/ |
| H A D | signum-generic.h | 61 #define SIGALRM 14 /* Alarm clock. */ macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/ |
| H A D | signum-generic.h | 61 #define SIGALRM 14 /* Alarm clock. */ macro
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/ |
| H A D | kselftest_harness.h | 866 if (sig != SIGALRM || sig != info->si_signo) { in __timeout_handler() 869 t->name, sig != SIGALRM ? sig : info->si_signo); in __timeout_handler() 887 if (sigaction(SIGALRM, &action, &saved_action)) { in __wait_for_test() 899 if (sigaction(SIGALRM, &saved_action, NULL)) { in __wait_for_test()
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/ |
| H A D | cpu-load.rst | 87 signal(SIGALRM, &sighandler); 97 sigaddset(&set, SIGALRM);
|
| /OK3568_Linux_fs/kernel/arch/um/os-Linux/skas/ |
| H A D | process.c | 51 #define STUB_SIG_MASK ((1 << SIGALRM) | (1 << SIGWINCH)) 305 } while (WIFSTOPPED(status) && (WSTOPSIG(status) == SIGALRM)); in start_userspace() 425 case SIGALRM: in userspace()
|
| /OK3568_Linux_fs/kernel/arch/ia64/include/uapi/asm/ |
| H A D | signal.h | 27 #define SIGALRM 14 macro
|
| /OK3568_Linux_fs/kernel/security/apparmor/include/ |
| H A D | sig_names.h | 27 [SIGALRM] = 14,
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/arm64/signal/ |
| H A D | test_signals_utils.c | 192 if (signum == SIGALRM && current->timeout) { in default_handler() 230 unblock_signal(SIGALRM); in default_setup()
|
| /OK3568_Linux_fs/kernel/arch/parisc/include/uapi/asm/ |
| H A D | signal.h | 19 #define SIGALRM 14 macro
|
| /OK3568_Linux_fs/u-boot/include/asm-generic/ |
| H A D | signal.h | 24 #define SIGALRM 14 macro
|
| /OK3568_Linux_fs/kernel/arch/m68k/include/uapi/asm/ |
| H A D | signal.h | 32 #define SIGALRM 14 macro
|