blobmsg: add blobmsg_realloc_string_buffer()
[project/libubox.git] / uloop.c
diff --git a/uloop.c b/uloop.c
index 3a62b62..f0ccb0c 100644 (file)
--- a/uloop.c
+++ b/uloop.c
@@ -246,6 +246,9 @@ int uloop_fd_delete(struct uloop_fd *sock)
 {
        int i;
 
+       if (!sock->registered)
+               return 0;
+
        for (i = cur_fd + 1; i < cur_nfds; i++) {
                if (events[i].data.ptr != sock)
                        continue;
@@ -302,6 +305,9 @@ int uloop_fd_add(struct uloop_fd *sock, unsigned int flags)
        unsigned int fl;
        int ret;
 
+       if (!(flags & (ULOOP_READ | ULOOP_WRITE)))
+               return uloop_fd_delete(sock);
+
        if (!sock->registered && !(flags & ULOOP_BLOCKING)) {
                fl = fcntl(sock->fd, F_GETFL, 0);
                fl |= O_NONBLOCK;
@@ -387,7 +393,7 @@ int uloop_timeout_cancel(struct uloop_timeout *timeout)
        return 0;
 }
 
-int uloop_timeout_pending(struct uloop_timeout *timeout)
+int uloop_timeout_remaining(struct uloop_timeout *timeout)
 {
        struct timeval now;