summaryrefslogtreecommitdiff
path: root/accel-pppd/extra/sigchld.h
diff options
context:
space:
mode:
Diffstat (limited to 'accel-pppd/extra/sigchld.h')
-rw-r--r--accel-pppd/extra/sigchld.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/accel-pppd/extra/sigchld.h b/accel-pppd/extra/sigchld.h
new file mode 100644
index 0000000..27d1adf
--- /dev/null
+++ b/accel-pppd/extra/sigchld.h
@@ -0,0 +1,21 @@
+#ifndef __SIGCHLD_H
+#define __SIGCHLD_H
+
+#include <pthread.h>
+#include "list.h"
+
+struct sigchld_handler_t
+{
+ struct list_head entry;
+ pthread_mutex_t lock;
+ pid_t pid;
+ void (*handler)(struct sigchld_handler_t *, int status);
+};
+
+void sigchld_register_handler(struct sigchld_handler_t *);
+void sigchld_unregister_handler(struct sigchld_handler_t *);
+void sigchld_lock();
+void sigchld_unlock();
+
+#endif
+