X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=signal.c;h=27bda8407faf73a9812246e12bb3b98645a62fae;hb=181beb316afad036ac01a778544c5dec0a8d51c7;hp=32d6ab6624e5f493ac393b630a603c0968f11497;hpb=2031b9cab9304b02c0372f73eef54d9501277031;p=paraslash.git diff --git a/signal.c b/signal.c index 32d6ab66..27bda840 100644 --- a/signal.c +++ b/signal.c @@ -202,16 +202,14 @@ void para_unblock_signal(int sig) /** * Return the number of the next pending signal. * - * \param rfds The fd_set containing the signal pipe. - * * \return On success, the number of the received signal is returned. If there * is no signal currently pending, the function returns zero. On read errors * from the signal pipe, the process is terminated. */ -int para_next_signal(fd_set *rfds) +int para_next_signal(void) { size_t n; - int s, ret = read_nonblock(signal_pipe[0], &s, sizeof(s), rfds, &n); + int s, ret = read_nonblock(signal_pipe[0], &s, sizeof(s), &n); if (ret < 0) { PARA_EMERG_LOG("%s\n", para_strerror(-ret));