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>2010-12-06 18:54:13 +0300
committerFelix Fietkau <nbd@openwrt.org>2010-12-06 18:54:13 +0300
commitcd086c7c1558eb5816711f4fdc6e21524a01ddca (patch)
treece46bfb674d32499eb21facff4fc8e9dac08f45d /uloop.h
parent869fc39f50473e135a6be72b13a10f987e46c57b (diff)
uloop: add a flag for keeping the socket blocking
Diffstat (limited to 'uloop.h')
-rw-r--r--uloop.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/uloop.h b/uloop.h
index 35ee3a5..10a117f 100644
--- a/uloop.h
+++ b/uloop.h
@@ -39,6 +39,7 @@ typedef void (*uloop_timeout_handler)(struct uloop_timeout *t);
#define ULOOP_READ (1 << 0)
#define ULOOP_WRITE (1 << 1)
#define ULOOP_EDGE_TRIGGER (1 << 2)
+#define ULOOP_BLOCKING (1 << 3)
struct uloop_fd
{