2 * libev event processing core, watcher management
4 * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 # if HAVE_CLOCK_GETTIME
35 # define EV_USE_MONOTONIC 1
36 # define EV_USE_REALTIME 1
39 # if HAVE_SELECT && HAVE_SYS_SELECT_H
40 # define EV_USE_SELECT 1
43 # if HAVE_POLL && HAVE_POLL_H
44 # define EV_USE_POLL 1
47 # if HAVE_EPOLL && HAVE_EPOLL_CTL && HAVE_SYS_EPOLL_H
48 # define EV_USE_EPOLL 1
51 # if HAVE_KQUEUE && HAVE_WORKING_KQUEUE && HAVE_SYS_EVENT_H && HAVE_SYS_QUEUE_H
52 # define EV_USE_KQUEUE 1
68 #include <sys/types.h>
70 # include <sys/wait.h>
77 #ifndef EV_USE_MONOTONIC
78 # define EV_USE_MONOTONIC 1
82 # define EV_USE_SELECT 1
86 # define EV_USE_POLL 0 /* poll is usually slower than select, and not as well tested */
90 # define EV_USE_EPOLL 0
94 # define EV_USE_KQUEUE 0
99 # define EV_USE_WIN32 1
101 # define EV_USE_WIN32 0
105 #ifndef EV_USE_REALTIME
106 # define EV_USE_REALTIME 1
111 #ifndef CLOCK_MONOTONIC
112 # undef EV_USE_MONOTONIC
113 # define EV_USE_MONOTONIC 0
116 #ifndef CLOCK_REALTIME
117 # undef EV_USE_REALTIME
118 # define EV_USE_REALTIME 0
123 #define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
124 #define MAX_BLOCKTIME 59.731 /* never wait longer than this time (to detect time jumps) */
125 #define PID_HASHSIZE 16 /* size of pid hash table, must be power of two */
126 /*#define CLEANUP_INTERVAL 300. /* how often to try to free memory and re-check fds */
131 # define expect(expr,value) __builtin_expect ((expr),(value))
132 # define inline inline
134 # define expect(expr,value) (expr)
135 # define inline static
138 #define expect_false(expr) expect ((expr) != 0, 0)
139 #define expect_true(expr) expect ((expr) != 0, 1)
141 #define NUMPRI (EV_MAXPRI - EV_MINPRI + 1)
142 #define ABSPRI(w) ((w)->priority - EV_MINPRI)
144 typedef struct ev_watcher *W;
145 typedef struct ev_watcher_list *WL;
146 typedef struct ev_watcher_time *WT;
148 static int have_monotonic; /* did clock_gettime (CLOCK_MONOTONIC) work? */
150 /*****************************************************************************/
154 struct ev_watcher_list *head;
155 unsigned char events;
169 # define VAR(name,decl) decl;
170 # include "ev_vars.h"
173 # include "ev_wrap.h"
177 # define VAR(name,decl) static decl;
178 # include "ev_vars.h"
183 /*****************************************************************************/
190 clock_gettime (CLOCK_REALTIME, &ts);
191 return ts.tv_sec + ts.tv_nsec * 1e-9;
194 gettimeofday (&tv, 0);
195 return tv.tv_sec + tv.tv_usec * 1e-6;
203 if (expect_true (have_monotonic))
206 clock_gettime (CLOCK_MONOTONIC, &ts);
207 return ts.tv_sec + ts.tv_nsec * 1e-9;
220 #define array_roundsize(base,n) ((n) | 4 & ~3)
222 #define array_needsize(base,cur,cnt,init) \
223 if (expect_false ((cnt) > cur)) \
228 newcnt = array_roundsize (base, newcnt << 1); \
230 while ((cnt) > newcnt); \
232 base = realloc (base, sizeof (*base) * (newcnt)); \
233 init (base + cur, newcnt - cur); \
237 /*****************************************************************************/
240 anfds_init (ANFD *base, int count)
245 base->events = EV_NONE;
253 event (EV_P_ W w, int events)
257 pendings [ABSPRI (w)][w->pending - 1].events |= events;
261 w->pending = ++pendingcnt [ABSPRI (w)];
262 array_needsize (pendings [ABSPRI (w)], pendingmax [ABSPRI (w)], pendingcnt [ABSPRI (w)], );
263 pendings [ABSPRI (w)][w->pending - 1].w = w;
264 pendings [ABSPRI (w)][w->pending - 1].events = events;
268 queue_events (EV_P_ W *events, int eventcnt, int type)
272 for (i = 0; i < eventcnt; ++i)
273 event (EV_A_ events [i], type);
277 fd_event (EV_P_ int fd, int events)
279 ANFD *anfd = anfds + fd;
282 for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next)
284 int ev = w->events & events;
287 event (EV_A_ (W)w, ev);
291 /*****************************************************************************/
298 for (i = 0; i < fdchangecnt; ++i)
300 int fd = fdchanges [i];
301 ANFD *anfd = anfds + fd;
306 for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next)
311 if (anfd->events != events)
313 method_modify (EV_A_ fd, anfd->events, events);
314 anfd->events = events;
322 fd_change (EV_P_ int fd)
324 if (anfds [fd].reify || fdchangecnt < 0)
327 anfds [fd].reify = 1;
330 array_needsize (fdchanges, fdchangemax, fdchangecnt, );
331 fdchanges [fdchangecnt - 1] = fd;
335 fd_kill (EV_P_ int fd)
339 while ((w = (struct ev_io *)anfds [fd].head))
341 ev_io_stop (EV_A_ w);
342 event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE);
346 /* called on EBADF to verify fds */
352 for (fd = 0; fd < anfdmax; ++fd)
353 if (anfds [fd].events)
354 if (fcntl (fd, F_GETFD) == -1 && errno == EBADF)
358 /* called on ENOMEM in select/poll to kill some fds and retry */
364 for (fd = anfdmax; fd--; )
365 if (anfds [fd].events)
373 /* susually called after fork if method needs to re-arm all fds from scratch */
379 /* this should be highly optimised to not do anything but set a flag */
380 for (fd = 0; fd < anfdmax; ++fd)
381 if (anfds [fd].events)
383 anfds [fd].events = 0;
384 fd_change (EV_A_ fd);
388 /*****************************************************************************/
391 upheap (WT *heap, int k)
395 while (k && heap [k >> 1]->at > w->at)
397 heap [k] = heap [k >> 1];
398 ((W)heap [k])->active = k + 1;
403 ((W)heap [k])->active = k + 1;
408 downheap (WT *heap, int N, int k)
416 if (j + 1 < N && heap [j]->at > heap [j + 1]->at)
419 if (w->at <= heap [j]->at)
423 ((W)heap [k])->active = k + 1;
428 ((W)heap [k])->active = k + 1;
431 /*****************************************************************************/
435 struct ev_watcher_list *head;
436 sig_atomic_t volatile gotsig;
439 static ANSIG *signals;
440 static int signalmax;
442 static int sigpipe [2];
443 static sig_atomic_t volatile gotsig;
444 static struct ev_io sigev;
447 signals_init (ANSIG *base, int count)
459 sighandler (int signum)
461 signals [signum - 1].gotsig = 1;
465 int old_errno = errno;
467 write (sigpipe [1], &signum, 1);
473 sigcb (EV_P_ struct ev_io *iow, int revents)
475 struct ev_watcher_list *w;
478 read (sigpipe [0], &revents, 1);
481 for (signum = signalmax; signum--; )
482 if (signals [signum].gotsig)
484 signals [signum].gotsig = 0;
486 for (w = signals [signum].head; w; w = w->next)
487 event (EV_A_ (W)w, EV_SIGNAL);
495 fcntl (sigpipe [0], F_SETFD, FD_CLOEXEC);
496 fcntl (sigpipe [1], F_SETFD, FD_CLOEXEC);
498 /* rather than sort out wether we really need nb, set it */
499 fcntl (sigpipe [0], F_SETFL, O_NONBLOCK);
500 fcntl (sigpipe [1], F_SETFL, O_NONBLOCK);
503 ev_io_set (&sigev, sigpipe [0], EV_READ);
504 ev_io_start (EV_A_ &sigev);
505 ev_unref (EV_A); /* child watcher should not keep loop alive */
508 /*****************************************************************************/
512 static struct ev_child *childs [PID_HASHSIZE];
513 static struct ev_signal childev;
516 # define WCONTINUED 0
520 child_reap (EV_P_ struct ev_signal *sw, int chain, int pid, int status)
524 for (w = (struct ev_child *)childs [chain & (PID_HASHSIZE - 1)]; w; w = (struct ev_child *)((WL)w)->next)
525 if (w->pid == pid || !w->pid)
527 ev_priority (w) = ev_priority (sw); /* need to do it *now* */
530 event (EV_A_ (W)w, EV_CHILD);
535 childcb (EV_P_ struct ev_signal *sw, int revents)
539 if (0 < (pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED)))
541 /* make sure we are called again until all childs have been reaped */
542 event (EV_A_ (W)sw, EV_SIGNAL);
544 child_reap (EV_A_ sw, pid, pid, status);
545 child_reap (EV_A_ sw, 0, pid, status); /* this might trigger a watcher twice, but event catches that */
551 /*****************************************************************************/
554 # include "ev_kqueue.c"
557 # include "ev_epoll.c"
560 # include "ev_poll.c"
563 # include "ev_select.c"
567 ev_version_major (void)
569 return EV_VERSION_MAJOR;
573 ev_version_minor (void)
575 return EV_VERSION_MINOR;
578 /* return true if we are running with elevated privileges and should ignore env variables */
585 return getuid () != geteuid ()
586 || getgid () != getegid ();
597 loop_init (EV_P_ int methods)
604 if (!clock_gettime (CLOCK_MONOTONIC, &ts))
610 mn_now = get_clock ();
612 rtmn_diff = rt_now - mn_now;
614 if (methods == EVMETHOD_AUTO)
615 if (!enable_secure () && getenv ("LIBEV_METHODS"))
616 methods = atoi (getenv ("LIBEV_METHODS"));
618 methods = EVMETHOD_ANY;
622 if (!method && (methods & EVMETHOD_WIN32 )) method = win32_init (EV_A_ methods);
625 if (!method && (methods & EVMETHOD_KQUEUE)) method = kqueue_init (EV_A_ methods);
628 if (!method && (methods & EVMETHOD_EPOLL )) method = epoll_init (EV_A_ methods);
631 if (!method && (methods & EVMETHOD_POLL )) method = poll_init (EV_A_ methods);
634 if (!method && (methods & EVMETHOD_SELECT)) method = select_init (EV_A_ methods);
643 if (method == EVMETHOD_WIN32 ) win32_destroy (EV_A);
646 if (method == EVMETHOD_KQUEUE) kqueue_destroy (EV_A);
649 if (method == EVMETHOD_EPOLL ) epoll_destroy (EV_A);
652 if (method == EVMETHOD_POLL ) poll_destroy (EV_A);
655 if (method == EVMETHOD_SELECT) select_destroy (EV_A);
667 if (method == EVMETHOD_EPOLL ) epoll_fork (EV_A);
670 if (method == EVMETHOD_KQUEUE) kqueue_fork (EV_A);
676 ev_loop_new (int methods)
678 struct ev_loop *loop = (struct ev_loop *)calloc (1, sizeof (struct ev_loop));
680 loop_init (EV_A_ methods);
682 if (ev_method (EV_A))
689 ev_loop_destroy (EV_P)
704 struct ev_loop default_loop_struct;
705 static struct ev_loop *default_loop;
709 static int default_loop;
713 ev_default_loop (int methods)
715 if (sigpipe [0] == sigpipe [1])
722 struct ev_loop *loop = default_loop = &default_loop_struct;
727 loop_init (EV_A_ methods);
729 if (ev_method (EV_A))
731 ev_watcher_init (&sigev, sigcb);
732 ev_set_priority (&sigev, EV_MAXPRI);
736 ev_signal_init (&childev, childcb, SIGCHLD);
737 ev_set_priority (&childev, EV_MAXPRI);
738 ev_signal_start (EV_A_ &childev);
739 ev_unref (EV_A); /* child watcher should not keep loop alive */
750 ev_default_destroy (void)
753 struct ev_loop *loop = default_loop;
756 ev_ref (EV_A); /* child watcher */
757 ev_signal_stop (EV_A_ &childev);
759 ev_ref (EV_A); /* signal watcher */
760 ev_io_stop (EV_A_ &sigev);
762 close (sigpipe [0]); sigpipe [0] = 0;
763 close (sigpipe [1]); sigpipe [1] = 0;
769 ev_default_fork (void)
772 struct ev_loop *loop = default_loop;
777 ev_io_stop (EV_A_ &sigev);
782 ev_ref (EV_A); /* signal watcher */
786 /*****************************************************************************/
793 for (pri = NUMPRI; pri--; )
794 while (pendingcnt [pri])
796 ANPENDING *p = pendings [pri] + --pendingcnt [pri];
802 (*(void (**)(EV_P_ W, int))&p->w->cb) (EV_A_ p->w, p->events);
810 while (timercnt && ((WT)timers [0])->at <= mn_now)
812 struct ev_timer *w = timers [0];
814 assert (("inactive timer on timer heap detected", ev_is_active (w)));
816 /* first reschedule or stop timer */
819 assert (("negative ev_timer repeat value found while processing timers", w->repeat > 0.));
820 ((WT)w)->at = mn_now + w->repeat;
821 downheap ((WT *)timers, timercnt, 0);
824 ev_timer_stop (EV_A_ w); /* nonrepeating: stop timer */
826 event (EV_A_ (W)w, EV_TIMEOUT);
831 periodics_reify (EV_P)
833 while (periodiccnt && ((WT)periodics [0])->at <= rt_now)
835 struct ev_periodic *w = periodics [0];
837 assert (("inactive timer on periodic heap detected", ev_is_active (w)));
839 /* first reschedule or stop timer */
842 ((WT)w)->at += floor ((rt_now - ((WT)w)->at) / w->interval + 1.) * w->interval;
843 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", ((WT)w)->at > rt_now));
844 downheap ((WT *)periodics, periodiccnt, 0);
847 ev_periodic_stop (EV_A_ w); /* nonrepeating: stop timer */
849 event (EV_A_ (W)w, EV_PERIODIC);
854 periodics_reschedule (EV_P)
858 /* adjust periodics after time jump */
859 for (i = 0; i < periodiccnt; ++i)
861 struct ev_periodic *w = periodics [i];
865 ev_tstamp diff = ceil ((rt_now - ((WT)w)->at) / w->interval) * w->interval;
867 if (fabs (diff) >= 1e-4)
869 ev_periodic_stop (EV_A_ w);
870 ev_periodic_start (EV_A_ w);
872 i = 0; /* restart loop, inefficient, but time jumps should be rare */
879 time_update_monotonic (EV_P)
881 mn_now = get_clock ();
883 if (expect_true (mn_now - now_floor < MIN_TIMEJUMP * .5))
885 rt_now = rtmn_diff + mn_now;
902 if (expect_true (have_monotonic))
904 if (time_update_monotonic (EV_A))
906 ev_tstamp odiff = rtmn_diff;
908 for (i = 4; --i; ) /* loop a few times, before making important decisions */
910 rtmn_diff = rt_now - mn_now;
912 if (fabs (odiff - rtmn_diff) < MIN_TIMEJUMP)
913 return; /* all is well */
916 mn_now = get_clock ();
920 periodics_reschedule (EV_A);
921 /* no timer adjustment, as the monotonic clock doesn't jump */
922 /* timers_reschedule (EV_A_ rtmn_diff - odiff) */
930 if (expect_false (mn_now > rt_now || mn_now < rt_now - MAX_BLOCKTIME - MIN_TIMEJUMP))
932 periodics_reschedule (EV_A);
934 /* adjust timers. this is easy, as the offset is the same for all */
935 for (i = 0; i < timercnt; ++i)
936 ((WT)timers [i])->at += rt_now - mn_now;
955 static int loop_done;
958 ev_loop (EV_P_ int flags)
961 loop_done = flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK) ? 1 : 0;
965 /* queue check watchers (and execute them) */
966 if (expect_false (preparecnt))
968 queue_events (EV_A_ (W *)prepares, preparecnt, EV_PREPARE);
972 /* update fd-related kernel structures */
975 /* calculate blocking time */
977 /* we only need this for !monotonic clockor timers, but as we basically
978 always have timers, we just calculate it always */
980 if (expect_true (have_monotonic))
981 time_update_monotonic (EV_A);
989 if (flags & EVLOOP_NONBLOCK || idlecnt)
993 block = MAX_BLOCKTIME;
997 ev_tstamp to = ((WT)timers [0])->at - mn_now + method_fudge;
998 if (block > to) block = to;
1003 ev_tstamp to = ((WT)periodics [0])->at - rt_now + method_fudge;
1004 if (block > to) block = to;
1007 if (block < 0.) block = 0.;
1010 method_poll (EV_A_ block);
1012 /* update rt_now, do magic */
1015 /* queue pending timers and reschedule them */
1016 timers_reify (EV_A); /* relative timers called last */
1017 periodics_reify (EV_A); /* absolute timers called first */
1019 /* queue idle watchers unless io or timers are pending */
1021 queue_events (EV_A_ (W *)idles, idlecnt, EV_IDLE);
1023 /* queue check watchers, to be executed first */
1025 queue_events (EV_A_ (W *)checks, checkcnt, EV_CHECK);
1027 call_pending (EV_A);
1029 while (activecnt && !loop_done);
1036 ev_unloop (EV_P_ int how)
1041 /*****************************************************************************/
1044 wlist_add (WL *head, WL elem)
1051 wlist_del (WL *head, WL elem)
1061 head = &(*head)->next;
1066 ev_clear_pending (EV_P_ W w)
1070 pendings [ABSPRI (w)][w->pending - 1].w = 0;
1076 ev_start (EV_P_ W w, int active)
1078 if (w->priority < EV_MINPRI) w->priority = EV_MINPRI;
1079 if (w->priority > EV_MAXPRI) w->priority = EV_MAXPRI;
1092 /*****************************************************************************/
1095 ev_io_start (EV_P_ struct ev_io *w)
1099 if (ev_is_active (w))
1102 assert (("ev_io_start called with negative fd", fd >= 0));
1104 ev_start (EV_A_ (W)w, 1);
1105 array_needsize (anfds, anfdmax, fd + 1, anfds_init);
1106 wlist_add ((WL *)&anfds[fd].head, (WL)w);
1108 fd_change (EV_A_ fd);
1112 ev_io_stop (EV_P_ struct ev_io *w)
1114 ev_clear_pending (EV_A_ (W)w);
1115 if (!ev_is_active (w))
1118 wlist_del ((WL *)&anfds[w->fd].head, (WL)w);
1119 ev_stop (EV_A_ (W)w);
1121 fd_change (EV_A_ w->fd);
1125 ev_timer_start (EV_P_ struct ev_timer *w)
1127 if (ev_is_active (w))
1130 ((WT)w)->at += mn_now;
1132 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.));
1134 ev_start (EV_A_ (W)w, ++timercnt);
1135 array_needsize (timers, timermax, timercnt, );
1136 timers [timercnt - 1] = w;
1137 upheap ((WT *)timers, timercnt - 1);
1139 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));
1143 ev_timer_stop (EV_P_ struct ev_timer *w)
1145 ev_clear_pending (EV_A_ (W)w);
1146 if (!ev_is_active (w))
1149 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));
1151 if (((W)w)->active < timercnt--)
1153 timers [((W)w)->active - 1] = timers [timercnt];
1154 downheap ((WT *)timers, timercnt, ((W)w)->active - 1);
1157 ((WT)w)->at = w->repeat;
1159 ev_stop (EV_A_ (W)w);
1163 ev_timer_again (EV_P_ struct ev_timer *w)
1165 if (ev_is_active (w))
1169 ((WT)w)->at = mn_now + w->repeat;
1170 downheap ((WT *)timers, timercnt, ((W)w)->active - 1);
1173 ev_timer_stop (EV_A_ w);
1176 ev_timer_start (EV_A_ w);
1180 ev_periodic_start (EV_P_ struct ev_periodic *w)
1182 if (ev_is_active (w))
1185 assert (("ev_periodic_start called with negative interval value", w->interval >= 0.));
1187 /* this formula differs from the one in periodic_reify because we do not always round up */
1189 ((WT)w)->at += ceil ((rt_now - ((WT)w)->at) / w->interval) * w->interval;
1191 ev_start (EV_A_ (W)w, ++periodiccnt);
1192 array_needsize (periodics, periodicmax, periodiccnt, );
1193 periodics [periodiccnt - 1] = w;
1194 upheap ((WT *)periodics, periodiccnt - 1);
1196 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));
1200 ev_periodic_stop (EV_P_ struct ev_periodic *w)
1202 ev_clear_pending (EV_A_ (W)w);
1203 if (!ev_is_active (w))
1206 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));
1208 if (((W)w)->active < periodiccnt--)
1210 periodics [((W)w)->active - 1] = periodics [periodiccnt];
1211 downheap ((WT *)periodics, periodiccnt, ((W)w)->active - 1);
1214 ev_stop (EV_A_ (W)w);
1218 ev_idle_start (EV_P_ struct ev_idle *w)
1220 if (ev_is_active (w))
1223 ev_start (EV_A_ (W)w, ++idlecnt);
1224 array_needsize (idles, idlemax, idlecnt, );
1225 idles [idlecnt - 1] = w;
1229 ev_idle_stop (EV_P_ struct ev_idle *w)
1231 ev_clear_pending (EV_A_ (W)w);
1232 if (ev_is_active (w))
1235 idles [((W)w)->active - 1] = idles [--idlecnt];
1236 ev_stop (EV_A_ (W)w);
1240 ev_prepare_start (EV_P_ struct ev_prepare *w)
1242 if (ev_is_active (w))
1245 ev_start (EV_A_ (W)w, ++preparecnt);
1246 array_needsize (prepares, preparemax, preparecnt, );
1247 prepares [preparecnt - 1] = w;
1251 ev_prepare_stop (EV_P_ struct ev_prepare *w)
1253 ev_clear_pending (EV_A_ (W)w);
1254 if (ev_is_active (w))
1257 prepares [((W)w)->active - 1] = prepares [--preparecnt];
1258 ev_stop (EV_A_ (W)w);
1262 ev_check_start (EV_P_ struct ev_check *w)
1264 if (ev_is_active (w))
1267 ev_start (EV_A_ (W)w, ++checkcnt);
1268 array_needsize (checks, checkmax, checkcnt, );
1269 checks [checkcnt - 1] = w;
1273 ev_check_stop (EV_P_ struct ev_check *w)
1275 ev_clear_pending (EV_A_ (W)w);
1276 if (ev_is_active (w))
1279 checks [((W)w)->active - 1] = checks [--checkcnt];
1280 ev_stop (EV_A_ (W)w);
1284 # define SA_RESTART 0
1288 ev_signal_start (EV_P_ struct ev_signal *w)
1291 assert (("signal watchers are only supported in the default loop", loop == default_loop));
1293 if (ev_is_active (w))
1296 assert (("ev_signal_start called with illegal signal number", w->signum > 0));
1298 ev_start (EV_A_ (W)w, 1);
1299 array_needsize (signals, signalmax, w->signum, signals_init);
1300 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w);
1304 struct sigaction sa;
1305 sa.sa_handler = sighandler;
1306 sigfillset (&sa.sa_mask);
1307 sa.sa_flags = SA_RESTART; /* if restarting works we save one iteration */
1308 sigaction (w->signum, &sa, 0);
1313 ev_signal_stop (EV_P_ struct ev_signal *w)
1315 ev_clear_pending (EV_A_ (W)w);
1316 if (!ev_is_active (w))
1319 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w);
1320 ev_stop (EV_A_ (W)w);
1322 if (!signals [w->signum - 1].head)
1323 signal (w->signum, SIG_DFL);
1327 ev_child_start (EV_P_ struct ev_child *w)
1330 assert (("child watchers are only supported in the default loop", loop == default_loop));
1332 if (ev_is_active (w))
1335 ev_start (EV_A_ (W)w, 1);
1336 wlist_add ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
1340 ev_child_stop (EV_P_ struct ev_child *w)
1342 ev_clear_pending (EV_A_ (W)w);
1343 if (ev_is_active (w))
1346 wlist_del ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
1347 ev_stop (EV_A_ (W)w);
1350 /*****************************************************************************/
1356 void (*cb)(int revents, void *arg);
1361 once_cb (EV_P_ struct ev_once *once, int revents)
1363 void (*cb)(int revents, void *arg) = once->cb;
1364 void *arg = once->arg;
1366 ev_io_stop (EV_A_ &once->io);
1367 ev_timer_stop (EV_A_ &once->to);
1374 once_cb_io (EV_P_ struct ev_io *w, int revents)
1376 once_cb (EV_A_ (struct ev_once *)(((char *)w) - offsetof (struct ev_once, io)), revents);
1380 once_cb_to (EV_P_ struct ev_timer *w, int revents)
1382 once_cb (EV_A_ (struct ev_once *)(((char *)w) - offsetof (struct ev_once, to)), revents);
1386 ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg)
1388 struct ev_once *once = malloc (sizeof (struct ev_once));
1391 cb (EV_ERROR | EV_READ | EV_WRITE | EV_TIMEOUT, arg);
1397 ev_watcher_init (&once->io, once_cb_io);
1400 ev_io_set (&once->io, fd, events);
1401 ev_io_start (EV_A_ &once->io);
1404 ev_watcher_init (&once->to, once_cb_to);
1407 ev_timer_set (&once->to, timeout, 0.);
1408 ev_timer_start (EV_A_ &once->to);