Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-05-24 23:46:10 +0400
committerFelix Fietkau <nbd@openwrt.org>2011-05-25 00:12:17 +0400
commita8032be64c4d03a98af47e9f4d93ddc137d23733 (patch)
tree2d4c635e24ee40b799c368710bad9cb3437ac5e7 /uloop.h
parent11079ba5829a4d14461612fe236d6584b53892c3 (diff)
uloop: use list.h, add support for handling sigchld
Diffstat (limited to 'uloop.h')
-rw-r--r--uloop.h22
1 files changed, 20 insertions, 2 deletions
diff --git a/uloop.h b/uloop.h
index a6165af..bce3974 100644
--- a/uloop.h
+++ b/uloop.h
@@ -23,6 +23,7 @@
#include <sys/time.h>
#include <stdbool.h>
#include <stdint.h>
+#include <signal.h>
#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;