| /src/crypto/external/bsd/heimdal/dist/kcm/ |
| main.c | 45 sigusr1(int sig) function 75 sa.sa_handler = sigusr1; 78 sigaction(SIGUSR1, &sa, NULL); 87 signal(SIGUSR1, sigusr1);
|
| /src/external/gpl3/gdb/dist/sim/testsuite/cris/c/ |
| thread5.c | 29 sigusr1 (int signum) function 31 if (signum != SIGUSR1 || !ok) 51 if (signal (SIGUSR1, sigusr1) != SIG_DFL) 54 || sigaddset (&sigs, SIGUSR1) != 0 57 if (pthread_kill (pthread_self (), SIGUSR1) != 0 65 || sigaddset (&sigs, SIGUSR1) != 0
|
| /src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/ |
| thread5.c | 29 sigusr1 (int signum) function 31 if (signum != SIGUSR1 || !ok) 51 if (signal (SIGUSR1, sigusr1) != SIG_DFL) 54 || sigaddset (&sigs, SIGUSR1) != 0 57 if (pthread_kill (pthread_self (), SIGUSR1) != 0 65 || sigaddset (&sigs, SIGUSR1) != 0
|
| /src/external/bsd/atf/dist/tools/ |
| signals_test.cpp | 50 namespace sigusr1 { namespace 68 if (::sigaction(SIGUSR1, &sa, NULL) == -1) 69 throw tools::system_error("sigusr1::program", 72 } // namespace sigusr1 99 sigusr1::program(); 101 sigusr1::happened = false; 102 ::kill(::getpid(), SIGUSR1); 103 ATF_REQUIRE(sigusr1::happened); 106 signal_holder hld(SIGUSR1); 107 ::kill(::getpid(), SIGUSR1); [all...] |
| /src/games/hunt/hunt/ |
| hunt.c | 107 static void sigusr1(int) __dead; 284 (void) signal(SIGUSR1, sigusr1); 496 (void) kill(getppid(), SIGUSR1); /* tell mom */ 540 * sigusr1: 544 sigusr1(int dummy __unused) function
|
| /src/external/bsd/blocklist/bin/ |
| blocklistd.c | 85 sigusr1(int n __unused) function 500 signal(SIGUSR1, sigusr1);
|
| /src/external/lgpl2/userspace-rcu/dist/tests/benchmark/ |
| test_urcu_hash.c | 17 void (*sigusr1)(int signo); member in struct:test_hash_cb 48 return test_hash_cb[test_choice].sigusr1; 499 ret = sigaction(SIGUSR1, &act, NULL);
|
| /src/external/bsd/libpcap/dist/rpcapd/ |
| daemon.c | 483 // Catch SIGUSR1, but do nothing. We use it to interrupt the 495 sigaction(SIGUSR1, &action, NULL); 2619 sigset_t sigusr1; // signal set with just SIGUSR1 local 2680 // Set the signal set to include just SIGUSR1, and block that 2686 sigemptyset(&sigusr1); 2687 sigaddset(&sigusr1, SIGUSR1); 2688 pthread_sigmask(SIG_BLOCK, &sigusr1, NULL); 2696 // Unblock SIGUSR1 while we might be waiting for packets [all...] |