projects
/
paraslash.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fecdec_filter: Avoid potentially expensive pointer subtraction.
[paraslash.git]
/
signal.c
diff --git
a/signal.c
b/signal.c
index 59a0d45aba7ad975fc287862308891435c4e9095..5d3e2c9d915c5bbc2c92b5197dcee5c4e06b1ba5 100644
(file)
--- a/
signal.c
+++ b/
signal.c
@@
-102,20
+102,6
@@
int para_reap_child(pid_t *pid)
return 1;
}
return 1;
}
-/**
- * Paraslash's zombie killer.
- *
- * It just calls \p para_reap_child() until there are no more children left to
- * reap.
- */
-void para_reap_children(void)
-{
- pid_t pid;
-
- while (para_reap_child(&pid) > 0)
- ; /* nothing */
-}
-
/**
* Install the given handler for the given signal.
*
/**
* Install the given handler for the given signal.
*
@@
-163,7
+149,7
@@
void para_install_sighandler(int sig)
}
/**
}
/**
- * Return the number of next pending signal.
+ * Return the number of
the
next pending signal.
*
* This should be called if the fd for the signal pipe is ready for reading.
*
*
* This should be called if the fd for the signal pipe is ready for reading.
*