| /src/usr.bin/ktruss/ |
| makeerrnos.sh | 46 struct systab signals[] = { 87 extern struct systab signals[$elines + 1];
|
| dump.c | 566 xwprintf("(%s", signals[(int)*ap].name);
|
| /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/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| intel_breadcrumbs.c | 100 if (!list_is_last(&rq->signal_link, &ce->signals) && 105 if (!list_is_first(&rq->signal_link, &ce->signals) && 170 GEM_BUG_ON(list_empty(&ce->signals)); 172 list_for_each_safe(pos, next, &ce->signals) { 202 if (!list_is_first(pos, &ce->signals)) { 204 __list_del_many(&ce->signals, pos); 205 if (&ce->signals == pos) { /* now empty */ 328 list_for_each_prev(pos, &ce->signals) { 336 if (pos == &ce->signals) /* catch transitions from empty list */ 365 if (list_empty(&ce->signals)) [all...] |
| intel_context_types.h | 54 struct list_head signals; member in struct:intel_context
|
| intel_context.c | 293 INIT_LIST_HEAD(&ce->signals);
|
| intel_lrc.c | 2026 if (!list_empty(&ve->context.signals))
|
| /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/lib/libc/compat/arch/sparc/sys/ |
| compat_sigprocmask.S | 59 ! clr %o1 ! else block no signals ...
|
| /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/vndcompress/ |
| vndcompress.c | 277 init_signal_handler(int flags, const struct sigdesc *signals, size_t n, 286 (void)sigaddset(&sa.sa_mask, signals[i].sd_signo); 290 if (sigaction(signals[i].sd_signo, &sa, NULL) == -1) 291 err(1, "sigaction(%s)", signals[i].sd_name);
|
| /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);
|