Changes in / [d933c3ca:f661cee]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • owl.c

    ra7fac14 rb8a3e00  
    389389}
    390390
    391 #define OR_DIE(s, syscall)      \
     391#define CHECK_RESULT(s, syscall) \
    392392  G_STMT_START {                 \
    393     if ((syscall) == -1) {       \
     393    if ((syscall) != 0) {        \
    394394      perror((s));               \
    395395      exit(1);                   \
     
    402402  sigset_t sigset;
    403403  int ret, i;
    404   const int reset_signals[] = { SIGABRT, SIGBUS, SIGCHLD, SIGFPE, SIGILL,
    405                                 SIGQUIT, SIGSEGV, };
    406   /* Don't bother resetting watched ones because owl_signal_init will. */
    407   const int watch_signals[] = { SIGWINCH, SIGTERM, SIGHUP, SIGINT, };
     404  const int signals[] = { SIGABRT, SIGBUS, SIGCHLD, SIGFPE, SIGHUP, SIGILL,
     405                          SIGINT, SIGQUIT, SIGSEGV, SIGTERM, SIGWINCH };
    408406
    409407  /* Sanitize our signals; the mask and dispositions from our parent
    410408   * aren't really useful. Signal list taken from equivalent code in
    411409   * Chromium. */
    412   OR_DIE("sigemptyset", sigemptyset(&sigset));
     410  CHECK_RESULT("sigemptyset", sigemptyset(&sigset));
    413411  if ((ret = pthread_sigmask(SIG_SETMASK, &sigset, NULL)) != 0) {
    414412    errno = ret;
    415413    perror("pthread_sigmask");
    416     exit(1);
    417   }
    418   for (i = 0; i < G_N_ELEMENTS(reset_signals); i++) {
    419     OR_DIE("sigaction", sigaction(reset_signals[i], &sig_default, NULL));
     414  }
     415  for (i = 0; i < G_N_ELEMENTS(signals); i++) {
     416    CHECK_RESULT("sigaction", sigaction(signals[i], &sig_default, NULL));
    420417  }
    421418
    422419  /* Turn off SIGPIPE; we check the return value of write. */
    423   OR_DIE("sigaction", sigaction(SIGPIPE, &sig_ignore, NULL));
     420  CHECK_RESULT("sigaction", sigaction(SIGPIPE, &sig_ignore, NULL));
    424421
    425422  /* Register some signals with the signal thread. */
    426   owl_signal_init(watch_signals, G_N_ELEMENTS(watch_signals),
    427                   sig_handler, NULL);
     423  CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGWINCH));
     424  CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGTERM));
     425  CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGHUP));
     426  CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGINT));
     427  owl_signal_init(&sigset, sig_handler, NULL);
    428428}
    429429
  • signal.c

    ra7fac14 r1d21d9f  
    11#include <errno.h>
    2 #include <glib.h>
    32#include <pthread.h>
    43#include <signal.h>
     
    1413static void *signal_thread_func(void *data);
    1514
    16 static void dummy_handler(int signum)
    17 {
    18   /* Do nothing. This should never get called. It'd be nice to report the error
    19    * or something, but you can't have nice things in a signal handler. */
    20 }
    21 
    22 #define OR_DIE(s, syscall)       \
    23   G_STMT_START {                 \
    24     if ((syscall) == -1) {       \
    25       perror((s));               \
    26       exit(1);                   \
    27     }                            \
    28   } G_STMT_END
    29 
    30 /* Initializes the signal thread to listen for 'signals' on a dedicated
     15/* Initializes the signal thread to listen for 'set' on a dedicated
    3116 * thread. 'callback' is called *on the signal thread* when a signal
    3217 * is received.
     
    3419 * This function /must/ be called before any other threads are
    3520 * created. (Otherwise the signals will not get blocked correctly.) */
    36 void owl_signal_init(const int *signals, int num_signals, void (*callback)(const siginfo_t*, void*), void *data) {
    37   struct sigaction sig_dummy = { .sa_handler = dummy_handler };
     21void owl_signal_init(const sigset_t *set, void (*callback)(const siginfo_t*, void*), void *data) {
    3822  int ret;
    39   int i;
    4023
     24  signal_set = *set;
    4125  signal_cb = callback;
    4226  signal_cbdata = data;
    43 
    44   /* Stuff the signals into our sigset_t. Also assign all of them to a dummy
    45    * handler. Otherwise, if their default is SIG_IGN, they will get dropped if
    46    * delivered while processing. On Solaris, they will not get delivered at
    47    * all. */
    48   OR_DIE("sigemptyset", sigemptyset(&signal_set));
    49   for (i = 0; i < num_signals; i++) {
    50     OR_DIE("sigaddset", sigaddset(&signal_set, signals[i]));
    51     OR_DIE("sigaction", sigaction(signals[i], &sig_dummy, NULL));
    52   }
    53 
    5427  /* Block these signals in all threads, so we can get them. */
    55   if ((ret = pthread_sigmask(SIG_BLOCK, &signal_set, NULL)) != 0) {
     28  if ((ret = pthread_sigmask(SIG_BLOCK, set, NULL)) != 0) {
    5629    errno = ret;
    5730    perror("pthread_sigmask");
    58     exit(1);
    5931  }
    6032  /* Spawn a dedicated thread to sigwait. */
Note: See TracChangeset for help on using the changeset viewer.