From a8032be64c4d03a98af47e9f4d93ddc137d23733 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 24 May 2011 21:46:10 +0200 Subject: uloop: use list.h, add support for handling sigchld --- uloop.h | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to 'uloop.h') diff --git a/uloop.h b/uloop.h index a6165af..bce3974 100644 --- a/uloop.h +++ b/uloop.h @@ -23,6 +23,7 @@ #include #include #include +#include #if defined(__APPLE__) || defined(__FreeBSD__) #define USE_KQUEUE @@ -30,11 +31,15 @@ #define USE_EPOLL #endif +#include "list.h" + struct uloop_fd; struct uloop_timeout; +struct uloop_process; typedef void (*uloop_fd_handler)(struct uloop_fd *u, unsigned int events); typedef void (*uloop_timeout_handler)(struct uloop_timeout *t); +typedef void (*uloop_process_handler)(struct uloop_process *c, int ret); #define ULOOP_READ (1 << 0) #define ULOOP_WRITE (1 << 1) @@ -55,14 +60,24 @@ struct uloop_fd struct uloop_timeout { + struct list_head list; + bool pending; + uloop_timeout_handler cb; - struct uloop_timeout *prev; - struct uloop_timeout *next; struct timeval time; +}; + +struct uloop_process +{ + struct list_head list; bool pending; + + uloop_process_handler cb; + pid_t pid; }; extern bool uloop_cancelled; +extern bool uloop_handle_sigchld; int uloop_fd_add(struct uloop_fd *sock, unsigned int flags); int uloop_fd_delete(struct uloop_fd *sock); @@ -71,6 +86,9 @@ int uloop_timeout_add(struct uloop_timeout *timeout); int uloop_timeout_set(struct uloop_timeout *timeout, int msecs); int uloop_timeout_cancel(struct uloop_timeout *timeout); +int uloop_process_add(struct uloop_process *p); +int uloop_process_delete(struct uloop_process *p); + static inline void uloop_end(void) { uloop_cancelled = true; -- cgit v1.2.3