| /src/tests/lib/libc/sys/ |
| t_sigqueue.c | 97 static int signals[] = { variable 102 #define CNT __arraycount(signals) 104 #define CNT (sizeof(signals) / sizeof(signals[0])) 125 * given a array of signals to be delivered in tosend of size len 126 * place in ordered the signals to be delivered in delivery order 127 * and return the number of signals that should be delivered 155 atf_tc_set_md_var(tc, "descr", "Test queuing of real-time signals"); 167 ndelivered = sigorder(ordered, signals, CNT); 181 if (sigaddset(&mask, signals[i]) == -1 [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| intel_context_types.h | 54 struct list_head signals; member in struct:intel_context
|
| /src/tests/fs/puffs/ |
| t_basic.c | 394 ATF_TC(signals); variable 395 ATF_TC_HEAD(signals, tc) 405 ATF_TC_BODY(signals, tc) 452 ATF_TP_ADD_TC(tp, signals);
|
| /src/usr.bin/timeout/ |
| timeout.c | 196 struct sigaction signals; local 265 memset(&signals, 0, sizeof(signals)); 266 sigemptyset(&signals.sa_mask); 272 sigaddset(&signals.sa_mask, signums[i]); 274 signals.sa_handler = sig_handler; 275 signals.sa_flags = SA_RESTART; 279 sigaction(signums[i], &signals, NULL) == -1) 298 if (sigprocmask(SIG_BLOCK, &signals.sa_mask, NULL) == -1) 305 sigemptyset(&signals.sa_mask) [all...] |
| /src/lib/libc/time/ |
| zic.c | 1112 static int const signals[] = { local 1123 for (i = 0; i < sizeof signals / sizeof signals[0]; i++) { 1129 if (sigaction(signals[i], &act, &act0) == 0 1131 sigaction(signals[i], &act0, NULL); 1135 if (signal(signals[i], signal_handler) == SIG_IGN) { 1136 signal(signals[i], SIG_IGN);
|