afs.c: Avoid noisy log message.
[paraslash.git] / signal.h
index 50c5f636a84168f637ae26db9a41086d5177580f..921448305764109d83907981826e498853e68fbf 100644 (file)
--- a/signal.h
+++ b/signal.h
@@ -6,6 +6,18 @@
 
 /** \file signal.h exported symbols from signal.c */
 
+/**
+ * Task for signal handling.
+ */
+struct signal_task {
+       /** The signal pipe. */
+       int fd;
+       /** The number of the most recent signal. */
+       int signum;
+       /** The associated task structure. */
+       struct task task;
+};
+
 int para_signal_init(void);
 int para_install_sighandler(int);
 void para_reap_children(void);