X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=signal.c;h=59a0d45aba7ad975fc287862308891435c4e9095;hp=9168e918205a5f6733761db31ea7fc6573b2bbae;hb=8ea8abb73199b32fdd7afdf8825afa42ed8de244;hpb=cb4dd13c2327c13d486b6abe572f4af2398b65de diff --git a/signal.c b/signal.c index 9168e918..59a0d45a 100644 --- a/signal.c +++ b/signal.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2008 Andre Noll + * Copyright (C) 2004-2009 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -117,20 +117,49 @@ void para_reap_children(void) } /** - * Wrapper around signal(2). + * Install the given handler for the given signal. * * \param sig The number of the signal to catch. + * \param handler to be installed, \p SIG_IGN, or \p SIG_DFL. * - * This installs the generic signal handler for the given signal. + * This either succeeds or calls exit(EXIT_FAILURE). * - * \return This function returns 1 on success and \p -E_SIGNAL_SIG_ERR on errors. - * - * \sa signal(2). + * \sa sigaction(2). */ -int para_install_sighandler(int sig) +void para_sigaction(int sig, void (*handler)(int)) { + struct sigaction act; + PARA_DEBUG_LOG("catching signal %d\n", sig); - return signal(sig, &generic_signal_handler) == SIG_ERR? -E_SIGNAL_SIG_ERR : 1; + act.sa_handler = handler; + sigemptyset(&act.sa_mask); + act.sa_flags = 0; + if (sig == SIGALRM) { + #ifdef SA_INTERRUPT /* SunOS */ + act.sa_flags |= SA_INTERRUPT; + #endif + } else { + #ifdef SA_RESTART /* BSD */ + act.sa_flags |= SA_RESTART; + #endif + } + if (sigaction(sig, &act, NULL) >= 0) + return; + PARA_EMERG_LOG("failed to install signal handler for signal %d\n", + sig); + exit(EXIT_FAILURE); +} + +/** + * Install the generic signal handler for the given signal number. + * + * \param sig The number of the signal to catch. + * + * \sa signal(2), sigaction(2). + */ +void para_install_sighandler(int sig) +{ + para_sigaction(sig, &generic_signal_handler); } /**