X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=uloop.h;h=bce3974facab201b93d14349dcc60c6b78f3f0f9;hp=35ee3a5e4c71dfa787aa73a7eaa6894db7e9ad90;hb=a1a97eb11e89c420b84a659a88a4e72c7f04367d;hpb=0d1a602dcfe4e13e470a0c0bb23e1d99be3f15b5 diff --git a/uloop.h b/uloop.h index 35ee3a5..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,15 +31,20 @@ #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) #define ULOOP_EDGE_TRIGGER (1 << 2) +#define ULOOP_BLOCKING (1 << 3) struct uloop_fd { @@ -54,13 +60,25 @@ 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); @@ -68,7 +86,14 @@ 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); -void uloop_end(void); +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; +} + int uloop_init(void); void uloop_run(void); void uloop_done(void);