]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - signal.c
fd: Drop fd_set parameter from read_nonblock() and friends.
[paraslash.git] / signal.c
index 32d6ab6624e5f493ac393b630a603c0968f11497..27bda8407faf73a9812246e12bb3b98645a62fae 100644 (file)
--- 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));