#ifndef _WIN32 /* Windows wants us to call our signal handlers as __cdecl. Nobody else
* expects you to do anything crazy like this. */ #ifndef __cdecl #define __cdecl #endif #endif
/* Callback for when the signal handler write a byte to our signaling socket */ staticvoid
evsig_cb(evutil_socket_t fd, short what, void *arg)
{ staticchar signals[1024];
ev_ssize_t n; int i; int ncaught[NSIG]; struct event_base *base;
base = arg;
memset(&ncaught, 0, sizeof(ncaught));
while (1) { #ifdef _WIN32
n = recv(fd, signals, sizeof(signals), 0); #else
n = read(fd, signals, sizeof(signals)); #endif if (n == -1) { int err = evutil_socket_geterror(fd); if (! EVUTIL_ERR_RW_RETRIABLE(err))
event_sock_err(1, fd, "%s: recv", __func__); break;
} elseif (n == 0) { /* XXX warn? */ break;
} for (i = 0; i < n; ++i) {
ev_uint8_t sig = signals[i]; if (sig < NSIG)
ncaught[sig]++;
}
}
EVBASE_ACQUIRE_LOCK(base, th_base_lock); for (i = 0; i < NSIG; ++i) { if (ncaught[i])
evmap_signal_active_(base, i, ncaught[i]);
}
EVBASE_RELEASE_LOCK(base, th_base_lock);
}
int
evsig_init_(struct event_base *base)
{ /* *Oursignalhandlerisgoingtowritetooneendofthesocket *pairtowakeupoureventloop.Theeventloopthenscansfor *signalsthatgotdelivered.
*/ if (evutil_make_internal_pipe_(base->sig.ev_signal_pair) == -1) { #ifdef _WIN32 /* Make this nonfatal on win32, where sometimes people
have localhost firewalled. */
event_sock_warn(-1, "%s: socketpair", __func__); #else
event_sock_err(1, -1, "%s: socketpair", __func__); #endif return -1;
}
/* Helper: set the signal handler for evsignal to handler in base, so that
* we can restore the original handler when we clear the current one. */ int
evsig_set_handler_(struct event_base *base, int evsignal, void (__cdecl *handler)(int))
{ #ifdef EVENT__HAVE_SIGACTION struct sigaction sa; #else
ev_sighandler_t sh; #endif struct evsig_info *sig = &base->sig; void *p;
/* *resizesavedsignalhandlerarrayuptothehighestsignalnumber. *adynamicarrayisusedtokeepfootprintonthelowside.
*/ if (evsignal >= sig->sh_old_max) { int new_max = evsignal + 1;
event_debug(("%s: evsignal (%d) >= sh_old_max (%d), resizing",
__func__, evsignal, sig->sh_old_max));
p = mm_realloc(sig->sh_old, new_max * sizeof(*sig->sh_old)); if (p == NULL) {
event_warn("realloc"); return (-1);
}
/* allocate space for previous handler out of dynamic array */
sig->sh_old[evsignal] = mm_malloc(sizeof *sig->sh_old[evsignal]); if (sig->sh_old[evsignal] == NULL) {
event_warn("malloc"); return (-1);
}
/* save previous handler and setup new handler */ #ifdef EVENT__HAVE_SIGACTION
memset(&sa, 0, sizeof(sa));
sa.sa_handler = handler;
sa.sa_flags |= SA_RESTART;
sigfillset(&sa.sa_mask);
staticint
evsig_add(struct event_base *base, evutil_socket_t evsignal, short old, short events, void *p)
{ struct evsig_info *sig = &base->sig;
(void)p;
MOZ_CRASH("Don't use this; see bug 1616462");
EVUTIL_ASSERT(evsignal >= 0 && evsignal < NSIG);
/* catch signals if they happen quickly */
EVSIGBASE_LOCK(); if (evsig_base != base && evsig_base_n_signals_added) {
event_warnx("Added a signal to event base %p with signals " "already added to event_base %p. Only one can have " "signals at a time with the %s backend. The base with " "the most recently added signal or the most recent " "event_base_loop() call gets preference; do " "not rely on this behavior in future Libevent versions.",
base, evsig_base, base->evsel->name);
}
evsig_base = base;
evsig_base_n_signals_added = ++sig->ev_n_signals_added;
evsig_base_fd = base->sig.ev_signal_pair[1];
EVSIGBASE_UNLOCK();
event_debug(("%s: %d: changing signal handler", __func__, (int)evsignal)); if (evsig_set_handler_(base, (int)evsignal, evsig_handler) == -1) { goto err;
}
if (!sig->ev_signal_added) { if (event_add_nolock_(&sig->ev_signal, NULL, 0)) goto err;
sig->ev_signal_added = 1;
}
/* Wake up our notification mechanism */
msg = sig; #ifdef _WIN32
send(evsig_base_fd, (char*)&msg, 1, 0); #else
{ int r = write(evsig_base_fd, (char*)&msg, 1);
(void)r; /* Suppress 'unused return value' and 'unused var' */
} #endif
errno = save_errno; #ifdef _WIN32
EVUTIL_SET_SOCKET_ERROR(socket_errno); #endif
}
void
evsig_dealloc_(struct event_base *base)
{ int i = 0; if (base->sig.ev_signal_added) {
event_del(&base->sig.ev_signal);
base->sig.ev_signal_added = 0;
} /* debug event is created in evsig_init_/event_assign even when
* ev_signal_added == 0, so unassign is required */
event_debug_unassign(&base->sig.ev_signal);
for (i = 0; i < NSIG; ++i) { if (i < base->sig.sh_old_max && base->sig.sh_old[i] != NULL)
evsig_restore_handler_(base, i);
}
EVSIGBASE_LOCK(); if (base == evsig_base) {
evsig_base = NULL;
evsig_base_n_signals_added = 0;
evsig_base_fd = -1;
}
EVSIGBASE_UNLOCK();
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.