HomeSort by: relevance | last modified time | path
    Searched defs:signals (Results 1 - 4 of 4) sorted by relevancy

  /src/tests/lib/libc/sys/
t_sigqueue.c 97 static int signals[] = { variable in typeref:typename:int[]
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/usr.bin/timeout/
timeout.c 196 struct sigaction signals; local in function:main
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 857 static int const signals[] = { local in function:catch_signals
868 for (i = 0; i < sizeof signals / sizeof signals[0]; i++) {
874 if (sigaction(signals[i], &act, &act0) == 0
876 sigaction(signals[i], &act0, NULL);
880 if (signal(signals[i], signal_handler) == SIG_IGN) {
881 signal(signals[i], SIG_IGN);

Completed in 17 milliseconds