ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.c
(Generate patch)

Comparing libev/ev.c (file contents):
Revision 1.312 by root, Wed Aug 12 18:48:17 2009 UTC vs.
Revision 1.338 by root, Tue Mar 16 00:20:17 2010 UTC

1/* 1/*
2 * libev event processing core, watcher management 2 * libev event processing core, watcher management
3 * 3 *
4 * Copyright (c) 2007,2008,2009 Marc Alexander Lehmann <libev@schmorp.de> 4 * Copyright (c) 2007,2008,2009,2010 Marc Alexander Lehmann <libev@schmorp.de>
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without modifica- 7 * Redistribution and use in source and binary forms, with or without modifica-
8 * tion, are permitted provided that the following conditions are met: 8 * tion, are permitted provided that the following conditions are met:
9 * 9 *
110# define EV_USE_EPOLL 0 110# define EV_USE_EPOLL 0
111# endif 111# endif
112# endif 112# endif
113 113
114# ifndef EV_USE_KQUEUE 114# ifndef EV_USE_KQUEUE
115# if HAVE_KQUEUE && HAVE_SYS_EVENT_H && HAVE_SYS_QUEUE_H 115# if HAVE_KQUEUE && HAVE_SYS_EVENT_H
116# define EV_USE_KQUEUE 1 116# define EV_USE_KQUEUE 1
117# else 117# else
118# define EV_USE_KQUEUE 0 118# define EV_USE_KQUEUE 0
119# endif 119# endif
120# endif 120# endif
153 153
154#endif 154#endif
155 155
156#include <math.h> 156#include <math.h>
157#include <stdlib.h> 157#include <stdlib.h>
158#include <string.h>
158#include <fcntl.h> 159#include <fcntl.h>
159#include <stddef.h> 160#include <stddef.h>
160 161
161#include <stdio.h> 162#include <stdio.h>
162 163
163#include <assert.h> 164#include <assert.h>
164#include <errno.h> 165#include <errno.h>
165#include <sys/types.h> 166#include <sys/types.h>
166#include <time.h> 167#include <time.h>
168#include <limits.h>
167 169
168#include <signal.h> 170#include <signal.h>
169 171
170#ifdef EV_H 172#ifdef EV_H
171# include EV_H 173# include EV_H
182# define WIN32_LEAN_AND_MEAN 184# define WIN32_LEAN_AND_MEAN
183# include <windows.h> 185# include <windows.h>
184# ifndef EV_SELECT_IS_WINSOCKET 186# ifndef EV_SELECT_IS_WINSOCKET
185# define EV_SELECT_IS_WINSOCKET 1 187# define EV_SELECT_IS_WINSOCKET 1
186# endif 188# endif
189# undef EV_AVOID_STDIO
187#endif 190#endif
188 191
189/* this block tries to deduce configuration from header-defined symbols and defaults */ 192/* this block tries to deduce configuration from header-defined symbols and defaults */
190 193
191/* try to deduce the maximum number of signals on this platform */ 194/* try to deduce the maximum number of signals on this platform */
204#elif defined (MAXSIG) 207#elif defined (MAXSIG)
205# define EV_NSIG (MAXSIG+1) 208# define EV_NSIG (MAXSIG+1)
206#elif defined (MAX_SIG) 209#elif defined (MAX_SIG)
207# define EV_NSIG (MAX_SIG+1) 210# define EV_NSIG (MAX_SIG+1)
208#elif defined (SIGARRAYSIZE) 211#elif defined (SIGARRAYSIZE)
209# define EV_NSIG SIGARRAYSIZE /* Assume ary[SIGARRAYSIZE] */ 212# define EV_NSIG (SIGARRAYSIZE) /* Assume ary[SIGARRAYSIZE] */
210#elif defined (_sys_nsig) 213#elif defined (_sys_nsig)
211# define EV_NSIG (_sys_nsig) /* Solaris 2.5 */ 214# define EV_NSIG (_sys_nsig) /* Solaris 2.5 */
212#else 215#else
213# error "unable to find value for NSIG, please report" 216# error "unable to find value for NSIG, please report"
214/* to make it compile regardless, just remove the above line */ 217/* to make it compile regardless, just remove the above line, */
218/* but consider reporting it, too! :) */
215# define EV_NSIG 65 219# define EV_NSIG 65
216#endif 220#endif
217 221
218#ifndef EV_USE_CLOCK_SYSCALL 222#ifndef EV_USE_CLOCK_SYSCALL
219# if __linux && __GLIBC__ >= 2 223# if __linux && __GLIBC__ >= 2
220# define EV_USE_CLOCK_SYSCALL 1 224# define EV_USE_CLOCK_SYSCALL EV_FEATURE_OS
221# else 225# else
222# define EV_USE_CLOCK_SYSCALL 0 226# define EV_USE_CLOCK_SYSCALL 0
223# endif 227# endif
224#endif 228#endif
225 229
226#ifndef EV_USE_MONOTONIC 230#ifndef EV_USE_MONOTONIC
227# if defined (_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0 231# if defined (_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0
228# define EV_USE_MONOTONIC 1 232# define EV_USE_MONOTONIC EV_FEATURE_OS
229# else 233# else
230# define EV_USE_MONOTONIC 0 234# define EV_USE_MONOTONIC 0
231# endif 235# endif
232#endif 236#endif
233 237
235# define EV_USE_REALTIME !EV_USE_CLOCK_SYSCALL 239# define EV_USE_REALTIME !EV_USE_CLOCK_SYSCALL
236#endif 240#endif
237 241
238#ifndef EV_USE_NANOSLEEP 242#ifndef EV_USE_NANOSLEEP
239# if _POSIX_C_SOURCE >= 199309L 243# if _POSIX_C_SOURCE >= 199309L
240# define EV_USE_NANOSLEEP 1 244# define EV_USE_NANOSLEEP EV_FEATURE_OS
241# else 245# else
242# define EV_USE_NANOSLEEP 0 246# define EV_USE_NANOSLEEP 0
243# endif 247# endif
244#endif 248#endif
245 249
246#ifndef EV_USE_SELECT 250#ifndef EV_USE_SELECT
247# define EV_USE_SELECT 1 251# define EV_USE_SELECT EV_FEATURE_BACKENDS
248#endif 252#endif
249 253
250#ifndef EV_USE_POLL 254#ifndef EV_USE_POLL
251# ifdef _WIN32 255# ifdef _WIN32
252# define EV_USE_POLL 0 256# define EV_USE_POLL 0
253# else 257# else
254# define EV_USE_POLL 1 258# define EV_USE_POLL EV_FEATURE_BACKENDS
255# endif 259# endif
256#endif 260#endif
257 261
258#ifndef EV_USE_EPOLL 262#ifndef EV_USE_EPOLL
259# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 4)) 263# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 4))
260# define EV_USE_EPOLL 1 264# define EV_USE_EPOLL EV_FEATURE_BACKENDS
261# else 265# else
262# define EV_USE_EPOLL 0 266# define EV_USE_EPOLL 0
263# endif 267# endif
264#endif 268#endif
265 269
271# define EV_USE_PORT 0 275# define EV_USE_PORT 0
272#endif 276#endif
273 277
274#ifndef EV_USE_INOTIFY 278#ifndef EV_USE_INOTIFY
275# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 4)) 279# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 4))
276# define EV_USE_INOTIFY 1 280# define EV_USE_INOTIFY EV_FEATURE_OS
277# else 281# else
278# define EV_USE_INOTIFY 0 282# define EV_USE_INOTIFY 0
279# endif 283# endif
280#endif 284#endif
281 285
282#ifndef EV_PID_HASHSIZE 286#ifndef EV_PID_HASHSIZE
283# if EV_MINIMAL 287# define EV_PID_HASHSIZE EV_FEATURE_DATA ? 16 : 1
284# define EV_PID_HASHSIZE 1
285# else
286# define EV_PID_HASHSIZE 16
287# endif
288#endif 288#endif
289 289
290#ifndef EV_INOTIFY_HASHSIZE 290#ifndef EV_INOTIFY_HASHSIZE
291# if EV_MINIMAL 291# define EV_INOTIFY_HASHSIZE EV_FEATURE_DATA ? 16 : 1
292# define EV_INOTIFY_HASHSIZE 1
293# else
294# define EV_INOTIFY_HASHSIZE 16
295# endif
296#endif 292#endif
297 293
298#ifndef EV_USE_EVENTFD 294#ifndef EV_USE_EVENTFD
299# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 7)) 295# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 7))
300# define EV_USE_EVENTFD 1 296# define EV_USE_EVENTFD EV_FEATURE_OS
301# else 297# else
302# define EV_USE_EVENTFD 0 298# define EV_USE_EVENTFD 0
303# endif 299# endif
304#endif 300#endif
305 301
306#ifndef EV_USE_SIGNALFD 302#ifndef EV_USE_SIGNALFD
307# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 9)) 303# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 7))
308# define EV_USE_SIGNALFD 1 304# define EV_USE_SIGNALFD EV_FEATURE_OS
309# else 305# else
310# define EV_USE_SIGNALFD 0 306# define EV_USE_SIGNALFD 0
311# endif 307# endif
312#endif 308#endif
313 309
316# define EV_USE_4HEAP 1 312# define EV_USE_4HEAP 1
317# define EV_HEAP_CACHE_AT 1 313# define EV_HEAP_CACHE_AT 1
318#endif 314#endif
319 315
320#ifndef EV_VERIFY 316#ifndef EV_VERIFY
321# define EV_VERIFY !EV_MINIMAL 317# define EV_VERIFY (EV_FEATURE_API ? 1 : 0)
322#endif 318#endif
323 319
324#ifndef EV_USE_4HEAP 320#ifndef EV_USE_4HEAP
325# define EV_USE_4HEAP !EV_MINIMAL 321# define EV_USE_4HEAP EV_FEATURE_DATA
326#endif 322#endif
327 323
328#ifndef EV_HEAP_CACHE_AT 324#ifndef EV_HEAP_CACHE_AT
329# define EV_HEAP_CACHE_AT !EV_MINIMAL 325# define EV_HEAP_CACHE_AT EV_FEATURE_DATA
330#endif 326#endif
331 327
332/* on linux, we can use a (slow) syscall to avoid a dependency on pthread, */ 328/* on linux, we can use a (slow) syscall to avoid a dependency on pthread, */
333/* which makes programs even slower. might work on other unices, too. */ 329/* which makes programs even slower. might work on other unices, too. */
334#if EV_USE_CLOCK_SYSCALL 330#if EV_USE_CLOCK_SYSCALL
343# endif 339# endif
344#endif 340#endif
345 341
346/* this block fixes any misconfiguration where we know we run into trouble otherwise */ 342/* this block fixes any misconfiguration where we know we run into trouble otherwise */
347 343
344#ifdef _AIX
345/* AIX has a completely broken poll.h header */
346# undef EV_USE_POLL
347# define EV_USE_POLL 0
348#endif
349
348#ifndef CLOCK_MONOTONIC 350#ifndef CLOCK_MONOTONIC
349# undef EV_USE_MONOTONIC 351# undef EV_USE_MONOTONIC
350# define EV_USE_MONOTONIC 0 352# define EV_USE_MONOTONIC 0
351#endif 353#endif
352 354
395# endif 397# endif
396# endif 398# endif
397# ifdef __cplusplus 399# ifdef __cplusplus
398extern "C" { 400extern "C" {
399# endif 401# endif
400int eventfd (unsigned int initval, int flags); 402int (eventfd) (unsigned int initval, int flags);
401# ifdef __cplusplus 403# ifdef __cplusplus
402} 404}
403# endif 405# endif
404#endif 406#endif
405 407
406#if EV_USE_SIGNALFD 408#if EV_USE_SIGNALFD
407# include <sys/signalfd.h> 409/* our minimum requirement is glibc 2.7 which has the stub, but not the header */
410# include <stdint.h>
411# ifndef SFD_NONBLOCK
412# define SFD_NONBLOCK O_NONBLOCK
408#endif 413# endif
414# ifndef SFD_CLOEXEC
415# ifdef O_CLOEXEC
416# define SFD_CLOEXEC O_CLOEXEC
417# else
418# define SFD_CLOEXEC 02000000
419# endif
420# endif
421# ifdef __cplusplus
422extern "C" {
423# endif
424int signalfd (int fd, const sigset_t *mask, int flags);
425
426struct signalfd_siginfo
427{
428 uint32_t ssi_signo;
429 char pad[128 - sizeof (uint32_t)];
430};
431# ifdef __cplusplus
432}
433# endif
434#endif
435
409 436
410/**/ 437/**/
411 438
412#if EV_VERIFY >= 3 439#if EV_VERIFY >= 3
413# define EV_FREQUENT_CHECK ev_loop_verify (EV_A) 440# define EV_FREQUENT_CHECK ev_loop_verify (EV_A)
425 */ 452 */
426#define TIME_EPSILON 0.0001220703125 /* 1/8192 */ 453#define TIME_EPSILON 0.0001220703125 /* 1/8192 */
427 454
428#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */ 455#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
429#define MAX_BLOCKTIME 59.743 /* never wait longer than this time (to detect time jumps) */ 456#define MAX_BLOCKTIME 59.743 /* never wait longer than this time (to detect time jumps) */
430/*#define CLEANUP_INTERVAL (MAX_BLOCKTIME * 5.) /* how often to try to free memory and re-check fds, TODO */
431 457
432#if __GNUC__ >= 4 458#if __GNUC__ >= 4
433# define expect(expr,value) __builtin_expect ((expr),(value)) 459# define expect(expr,value) __builtin_expect ((expr),(value))
434# define noinline __attribute__ ((noinline)) 460# define noinline __attribute__ ((noinline))
435#else 461#else
442 468
443#define expect_false(expr) expect ((expr) != 0, 0) 469#define expect_false(expr) expect ((expr) != 0, 0)
444#define expect_true(expr) expect ((expr) != 0, 1) 470#define expect_true(expr) expect ((expr) != 0, 1)
445#define inline_size static inline 471#define inline_size static inline
446 472
447#if EV_MINIMAL 473#if EV_FEATURE_CODE
474# define inline_speed static inline
475#else
448# define inline_speed static noinline 476# define inline_speed static noinline
449#else
450# define inline_speed static inline
451#endif 477#endif
452 478
453#define NUMPRI (EV_MAXPRI - EV_MINPRI + 1) 479#define NUMPRI (EV_MAXPRI - EV_MINPRI + 1)
454 480
455#if EV_MINPRI == EV_MAXPRI 481#if EV_MINPRI == EV_MAXPRI
476 502
477#if EV_USE_MONOTONIC 503#if EV_USE_MONOTONIC
478static EV_ATOMIC_T have_monotonic; /* did clock_gettime (CLOCK_MONOTONIC) work? */ 504static EV_ATOMIC_T have_monotonic; /* did clock_gettime (CLOCK_MONOTONIC) work? */
479#endif 505#endif
480 506
507#ifndef EV_FD_TO_WIN32_HANDLE
508# define EV_FD_TO_WIN32_HANDLE(fd) _get_osfhandle (fd)
509#endif
510#ifndef EV_WIN32_HANDLE_TO_FD
511# define EV_WIN32_HANDLE_TO_FD(handle) _open_osfhandle (handle, 0)
512#endif
513#ifndef EV_WIN32_CLOSE_FD
514# define EV_WIN32_CLOSE_FD(fd) close (fd)
515#endif
516
481#ifdef _WIN32 517#ifdef _WIN32
482# include "ev_win32.c" 518# include "ev_win32.c"
483#endif 519#endif
484 520
485/*****************************************************************************/ 521/*****************************************************************************/
522
523#if EV_AVOID_STDIO
524static void noinline
525ev_printerr (const char *msg)
526{
527 write (STDERR_FILENO, msg, strlen (msg));
528}
529#endif
486 530
487static void (*syserr_cb)(const char *msg); 531static void (*syserr_cb)(const char *msg);
488 532
489void 533void
490ev_set_syserr_cb (void (*cb)(const char *msg)) 534ev_set_syserr_cb (void (*cb)(const char *msg))
500 544
501 if (syserr_cb) 545 if (syserr_cb)
502 syserr_cb (msg); 546 syserr_cb (msg);
503 else 547 else
504 { 548 {
549#if EV_AVOID_STDIO
550 const char *err = strerror (errno);
551
552 ev_printerr (msg);
553 ev_printerr (": ");
554 ev_printerr (err);
555 ev_printerr ("\n");
556#else
505 perror (msg); 557 perror (msg);
558#endif
506 abort (); 559 abort ();
507 } 560 }
508} 561}
509 562
510static void * 563static void *
511ev_realloc_emul (void *ptr, long size) 564ev_realloc_emul (void *ptr, long size)
512{ 565{
566#if __GLIBC__
567 return realloc (ptr, size);
568#else
513 /* some systems, notably openbsd and darwin, fail to properly 569 /* some systems, notably openbsd and darwin, fail to properly
514 * implement realloc (x, 0) (as required by both ansi c-98 and 570 * implement realloc (x, 0) (as required by both ansi c-89 and
515 * the single unix specification, so work around them here. 571 * the single unix specification, so work around them here.
516 */ 572 */
517 573
518 if (size) 574 if (size)
519 return realloc (ptr, size); 575 return realloc (ptr, size);
520 576
521 free (ptr); 577 free (ptr);
522 return 0; 578 return 0;
579#endif
523} 580}
524 581
525static void *(*alloc)(void *ptr, long size) = ev_realloc_emul; 582static void *(*alloc)(void *ptr, long size) = ev_realloc_emul;
526 583
527void 584void
535{ 592{
536 ptr = alloc (ptr, size); 593 ptr = alloc (ptr, size);
537 594
538 if (!ptr && size) 595 if (!ptr && size)
539 { 596 {
597#if EV_AVOID_STDIO
598 ev_printerr ("libev: memory allocation failed, aborting.\n");
599#else
540 fprintf (stderr, "libev: cannot allocate %ld bytes, aborting.", size); 600 fprintf (stderr, "libev: cannot allocate %ld bytes, aborting.", size);
601#endif
541 abort (); 602 abort ();
542 } 603 }
543 604
544 return ptr; 605 return ptr;
545} 606}
627 688
628 static int ev_default_loop_ptr; 689 static int ev_default_loop_ptr;
629 690
630#endif 691#endif
631 692
632#if EV_MINIMAL < 2 693#if EV_FEATURE_API
633# define EV_RELEASE_CB if (expect_false (release_cb)) release_cb (EV_A) 694# define EV_RELEASE_CB if (expect_false (release_cb)) release_cb (EV_A)
634# define EV_ACQUIRE_CB if (expect_false (acquire_cb)) acquire_cb (EV_A) 695# define EV_ACQUIRE_CB if (expect_false (acquire_cb)) acquire_cb (EV_A)
635# define EV_INVOKE_PENDING invoke_cb (EV_A) 696# define EV_INVOKE_PENDING invoke_cb (EV_A)
636#else 697#else
637# define EV_RELEASE_CB (void)0 698# define EV_RELEASE_CB (void)0
822} 883}
823 884
824/*****************************************************************************/ 885/*****************************************************************************/
825 886
826inline_speed void 887inline_speed void
827fd_event_nc (EV_P_ int fd, int revents) 888fd_event_nocheck (EV_P_ int fd, int revents)
828{ 889{
829 ANFD *anfd = anfds + fd; 890 ANFD *anfd = anfds + fd;
830 ev_io *w; 891 ev_io *w;
831 892
832 for (w = (ev_io *)anfd->head; w; w = (ev_io *)((WL)w)->next) 893 for (w = (ev_io *)anfd->head; w; w = (ev_io *)((WL)w)->next)
844fd_event (EV_P_ int fd, int revents) 905fd_event (EV_P_ int fd, int revents)
845{ 906{
846 ANFD *anfd = anfds + fd; 907 ANFD *anfd = anfds + fd;
847 908
848 if (expect_true (!anfd->reify)) 909 if (expect_true (!anfd->reify))
849 fd_event_nc (EV_A_ fd, revents); 910 fd_event_nocheck (EV_A_ fd, revents);
850} 911}
851 912
852void 913void
853ev_feed_fd_event (EV_P_ int fd, int revents) 914ev_feed_fd_event (EV_P_ int fd, int revents)
854{ 915{
855 if (fd >= 0 && fd < anfdmax) 916 if (fd >= 0 && fd < anfdmax)
856 fd_event_nc (EV_A_ fd, revents); 917 fd_event_nocheck (EV_A_ fd, revents);
857} 918}
858 919
859/* make sure the external fd watch events are in-sync */ 920/* make sure the external fd watch events are in-sync */
860/* with the kernel/libev internal state */ 921/* with the kernel/libev internal state */
861inline_size void 922inline_size void
876 937
877#if EV_SELECT_IS_WINSOCKET 938#if EV_SELECT_IS_WINSOCKET
878 if (events) 939 if (events)
879 { 940 {
880 unsigned long arg; 941 unsigned long arg;
881 #ifdef EV_FD_TO_WIN32_HANDLE
882 anfd->handle = EV_FD_TO_WIN32_HANDLE (fd); 942 anfd->handle = EV_FD_TO_WIN32_HANDLE (fd);
883 #else
884 anfd->handle = _get_osfhandle (fd);
885 #endif
886 assert (("libev: only socket fds supported in this configuration", ioctlsocket (anfd->handle, FIONREAD, &arg) == 0)); 943 assert (("libev: only socket fds supported in this configuration", ioctlsocket (anfd->handle, FIONREAD, &arg) == 0));
887 } 944 }
888#endif 945#endif
889 946
890 { 947 {
928 ev_io_stop (EV_A_ w); 985 ev_io_stop (EV_A_ w);
929 ev_feed_event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE); 986 ev_feed_event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE);
930 } 987 }
931} 988}
932 989
933/* check whether the given fd is atcually valid, for error recovery */ 990/* check whether the given fd is actually valid, for error recovery */
934inline_size int 991inline_size int
935fd_valid (int fd) 992fd_valid (int fd)
936{ 993{
937#ifdef _WIN32 994#ifdef _WIN32
938 return _get_osfhandle (fd) != -1; 995 return EV_FD_TO_WIN32_HANDLE (fd) != -1;
939#else 996#else
940 return fcntl (fd, F_GETFD) != -1; 997 return fcntl (fd, F_GETFD) != -1;
941#endif 998#endif
942} 999}
943 1000
978 { 1035 {
979 anfds [fd].events = 0; 1036 anfds [fd].events = 0;
980 anfds [fd].emask = 0; 1037 anfds [fd].emask = 0;
981 fd_change (EV_A_ fd, EV__IOFDSET | EV_ANFD_REIFY); 1038 fd_change (EV_A_ fd, EV__IOFDSET | EV_ANFD_REIFY);
982 } 1039 }
1040}
1041
1042/* used to prepare libev internal fd's */
1043/* this is not fork-safe */
1044inline_speed void
1045fd_intern (int fd)
1046{
1047#ifdef _WIN32
1048 unsigned long arg = 1;
1049 ioctlsocket (EV_FD_TO_WIN32_HANDLE (fd), FIONBIO, &arg);
1050#else
1051 fcntl (fd, F_SETFD, FD_CLOEXEC);
1052 fcntl (fd, F_SETFL, O_NONBLOCK);
1053#endif
983} 1054}
984 1055
985/*****************************************************************************/ 1056/*****************************************************************************/
986 1057
987/* 1058/*
1141 1212
1142static ANSIG signals [EV_NSIG - 1]; 1213static ANSIG signals [EV_NSIG - 1];
1143 1214
1144/*****************************************************************************/ 1215/*****************************************************************************/
1145 1216
1146/* used to prepare libev internal fd's */ 1217#if EV_SIGNAL_ENABLE || EV_ASYNC_ENABLE
1147/* this is not fork-safe */
1148inline_speed void
1149fd_intern (int fd)
1150{
1151#ifdef _WIN32
1152 unsigned long arg = 1;
1153 ioctlsocket (_get_osfhandle (fd), FIONBIO, &arg);
1154#else
1155 fcntl (fd, F_SETFD, FD_CLOEXEC);
1156 fcntl (fd, F_SETFL, O_NONBLOCK);
1157#endif
1158}
1159 1218
1160static void noinline 1219static void noinline
1161evpipe_init (EV_P) 1220evpipe_init (EV_P)
1162{ 1221{
1163 if (!ev_is_active (&pipe_w)) 1222 if (!ev_is_active (&pipe_w))
1164 { 1223 {
1165#if EV_USE_EVENTFD 1224# if EV_USE_EVENTFD
1166 evfd = eventfd (0, EFD_NONBLOCK | EFD_CLOEXEC); 1225 evfd = eventfd (0, EFD_NONBLOCK | EFD_CLOEXEC);
1167 if (evfd < 0 && errno == EINVAL) 1226 if (evfd < 0 && errno == EINVAL)
1168 evfd = eventfd (0, 0); 1227 evfd = eventfd (0, 0);
1169 1228
1170 if (evfd >= 0) 1229 if (evfd >= 0)
1172 evpipe [0] = -1; 1231 evpipe [0] = -1;
1173 fd_intern (evfd); /* doing it twice doesn't hurt */ 1232 fd_intern (evfd); /* doing it twice doesn't hurt */
1174 ev_io_set (&pipe_w, evfd, EV_READ); 1233 ev_io_set (&pipe_w, evfd, EV_READ);
1175 } 1234 }
1176 else 1235 else
1177#endif 1236# endif
1178 { 1237 {
1179 while (pipe (evpipe)) 1238 while (pipe (evpipe))
1180 ev_syserr ("(libev) error creating signal/async pipe"); 1239 ev_syserr ("(libev) error creating signal/async pipe");
1181 1240
1182 fd_intern (evpipe [0]); 1241 fd_intern (evpipe [0]);
1193evpipe_write (EV_P_ EV_ATOMIC_T *flag) 1252evpipe_write (EV_P_ EV_ATOMIC_T *flag)
1194{ 1253{
1195 if (!*flag) 1254 if (!*flag)
1196 { 1255 {
1197 int old_errno = errno; /* save errno because write might clobber it */ 1256 int old_errno = errno; /* save errno because write might clobber it */
1257 char dummy;
1198 1258
1199 *flag = 1; 1259 *flag = 1;
1200 1260
1201#if EV_USE_EVENTFD 1261#if EV_USE_EVENTFD
1202 if (evfd >= 0) 1262 if (evfd >= 0)
1204 uint64_t counter = 1; 1264 uint64_t counter = 1;
1205 write (evfd, &counter, sizeof (uint64_t)); 1265 write (evfd, &counter, sizeof (uint64_t));
1206 } 1266 }
1207 else 1267 else
1208#endif 1268#endif
1209 write (evpipe [1], &old_errno, 1); 1269 write (evpipe [1], &dummy, 1);
1210 1270
1211 errno = old_errno; 1271 errno = old_errno;
1212 } 1272 }
1213} 1273}
1214 1274
1263{ 1323{
1264#if EV_MULTIPLICITY 1324#if EV_MULTIPLICITY
1265 EV_P = signals [signum - 1].loop; 1325 EV_P = signals [signum - 1].loop;
1266#endif 1326#endif
1267 1327
1268#if _WIN32 1328#ifdef _WIN32
1269 signal (signum, ev_sighandler); 1329 signal (signum, ev_sighandler);
1270#endif 1330#endif
1271 1331
1272 signals [signum - 1].pending = 1; 1332 signals [signum - 1].pending = 1;
1273 evpipe_write (EV_A_ &sig_pending); 1333 evpipe_write (EV_A_ &sig_pending);
1315 break; 1375 break;
1316 } 1376 }
1317} 1377}
1318#endif 1378#endif
1319 1379
1380#endif
1381
1320/*****************************************************************************/ 1382/*****************************************************************************/
1321 1383
1384#if EV_CHILD_ENABLE
1322static WL childs [EV_PID_HASHSIZE]; 1385static WL childs [EV_PID_HASHSIZE];
1323
1324#ifndef _WIN32
1325 1386
1326static ev_signal childev; 1387static ev_signal childev;
1327 1388
1328#ifndef WIFCONTINUED 1389#ifndef WIFCONTINUED
1329# define WIFCONTINUED(status) 0 1390# define WIFCONTINUED(status) 0
1334child_reap (EV_P_ int chain, int pid, int status) 1395child_reap (EV_P_ int chain, int pid, int status)
1335{ 1396{
1336 ev_child *w; 1397 ev_child *w;
1337 int traced = WIFSTOPPED (status) || WIFCONTINUED (status); 1398 int traced = WIFSTOPPED (status) || WIFCONTINUED (status);
1338 1399
1339 for (w = (ev_child *)childs [chain & (EV_PID_HASHSIZE - 1)]; w; w = (ev_child *)((WL)w)->next) 1400 for (w = (ev_child *)childs [chain & ((EV_PID_HASHSIZE) - 1)]; w; w = (ev_child *)((WL)w)->next)
1340 { 1401 {
1341 if ((w->pid == pid || !w->pid) 1402 if ((w->pid == pid || !w->pid)
1342 && (!traced || (w->flags & 1))) 1403 && (!traced || (w->flags & 1)))
1343 { 1404 {
1344 ev_set_priority (w, EV_MAXPRI); /* need to do it *now*, this *must* be the same prio as the signal watcher itself */ 1405 ev_set_priority (w, EV_MAXPRI); /* need to do it *now*, this *must* be the same prio as the signal watcher itself */
1369 /* make sure we are called again until all children have been reaped */ 1430 /* make sure we are called again until all children have been reaped */
1370 /* we need to do it this way so that the callback gets called before we continue */ 1431 /* we need to do it this way so that the callback gets called before we continue */
1371 ev_feed_event (EV_A_ (W)sw, EV_SIGNAL); 1432 ev_feed_event (EV_A_ (W)sw, EV_SIGNAL);
1372 1433
1373 child_reap (EV_A_ pid, pid, status); 1434 child_reap (EV_A_ pid, pid, status);
1374 if (EV_PID_HASHSIZE > 1) 1435 if ((EV_PID_HASHSIZE) > 1)
1375 child_reap (EV_A_ 0, pid, status); /* this might trigger a watcher twice, but feed_event catches that */ 1436 child_reap (EV_A_ 0, pid, status); /* this might trigger a watcher twice, but feed_event catches that */
1376} 1437}
1377 1438
1378#endif 1439#endif
1379 1440
1468ev_backend (EV_P) 1529ev_backend (EV_P)
1469{ 1530{
1470 return backend; 1531 return backend;
1471} 1532}
1472 1533
1473#if EV_MINIMAL < 2 1534#if EV_FEATURE_API
1474unsigned int 1535unsigned int
1475ev_loop_count (EV_P) 1536ev_loop_count (EV_P)
1476{ 1537{
1477 return loop_count; 1538 return loop_count;
1478} 1539}
1558 1619
1559 ev_rt_now = ev_time (); 1620 ev_rt_now = ev_time ();
1560 mn_now = get_clock (); 1621 mn_now = get_clock ();
1561 now_floor = mn_now; 1622 now_floor = mn_now;
1562 rtmn_diff = ev_rt_now - mn_now; 1623 rtmn_diff = ev_rt_now - mn_now;
1563#if EV_MINIMAL < 2 1624#if EV_FEATURE_API
1564 invoke_cb = ev_invoke_pending; 1625 invoke_cb = ev_invoke_pending;
1565#endif 1626#endif
1566 1627
1567 io_blocktime = 0.; 1628 io_blocktime = 0.;
1568 timeout_blocktime = 0.; 1629 timeout_blocktime = 0.;
1574#endif 1635#endif
1575#if EV_USE_INOTIFY 1636#if EV_USE_INOTIFY
1576 fs_fd = flags & EVFLAG_NOINOTIFY ? -1 : -2; 1637 fs_fd = flags & EVFLAG_NOINOTIFY ? -1 : -2;
1577#endif 1638#endif
1578#if EV_USE_SIGNALFD 1639#if EV_USE_SIGNALFD
1579 sigfd = flags & EVFLAG_NOSIGFD ? -1 : -2; 1640 sigfd = flags & EVFLAG_SIGNALFD ? -2 : -1;
1580#endif 1641#endif
1581 1642
1582 if (!(flags & 0x0000ffffU)) 1643 if (!(flags & 0x0000ffffU))
1583 flags |= ev_recommended_backends (); 1644 flags |= ev_recommended_backends ();
1584 1645
1598 if (!backend && (flags & EVBACKEND_SELECT)) backend = select_init (EV_A_ flags); 1659 if (!backend && (flags & EVBACKEND_SELECT)) backend = select_init (EV_A_ flags);
1599#endif 1660#endif
1600 1661
1601 ev_prepare_init (&pending_w, pendingcb); 1662 ev_prepare_init (&pending_w, pendingcb);
1602 1663
1664#if EV_SIGNAL_ENABLE || EV_ASYNC_ENABLE
1603 ev_init (&pipe_w, pipecb); 1665 ev_init (&pipe_w, pipecb);
1604 ev_set_priority (&pipe_w, EV_MAXPRI); 1666 ev_set_priority (&pipe_w, EV_MAXPRI);
1667#endif
1605 } 1668 }
1606} 1669}
1607 1670
1608/* free up a loop structure */ 1671/* free up a loop structure */
1609static void noinline 1672static void noinline
1621 close (evfd); 1684 close (evfd);
1622#endif 1685#endif
1623 1686
1624 if (evpipe [0] >= 0) 1687 if (evpipe [0] >= 0)
1625 { 1688 {
1626 close (evpipe [0]); 1689 EV_WIN32_CLOSE_FD (evpipe [0]);
1627 close (evpipe [1]); 1690 EV_WIN32_CLOSE_FD (evpipe [1]);
1628 } 1691 }
1629 } 1692 }
1630 1693
1631#if EV_USE_SIGNALFD 1694#if EV_USE_SIGNALFD
1632 if (ev_is_active (&sigfd_w)) 1695 if (ev_is_active (&sigfd_w))
1633 {
1634 /*ev_ref (EV_A);*/
1635 /*ev_io_stop (EV_A_ &sigfd_w);*/
1636
1637 close (sigfd); 1696 close (sigfd);
1638 }
1639#endif 1697#endif
1640 1698
1641#if EV_USE_INOTIFY 1699#if EV_USE_INOTIFY
1642 if (fs_fd >= 0) 1700 if (fs_fd >= 0)
1643 close (fs_fd); 1701 close (fs_fd);
1728 close (evfd); 1786 close (evfd);
1729#endif 1787#endif
1730 1788
1731 if (evpipe [0] >= 0) 1789 if (evpipe [0] >= 0)
1732 { 1790 {
1733 close (evpipe [0]); 1791 EV_WIN32_CLOSE_FD (evpipe [0]);
1734 close (evpipe [1]); 1792 EV_WIN32_CLOSE_FD (evpipe [1]);
1735 } 1793 }
1736 1794
1795#if EV_SIGNAL_ENABLE || EV_ASYNC_ENABLE
1737 evpipe_init (EV_A); 1796 evpipe_init (EV_A);
1738 /* now iterate over everything, in case we missed something */ 1797 /* now iterate over everything, in case we missed something */
1739 pipecb (EV_A_ &pipe_w, EV_READ); 1798 pipecb (EV_A_ &pipe_w, EV_READ);
1799#endif
1740 } 1800 }
1741 1801
1742 postfork = 0; 1802 postfork = 0;
1743} 1803}
1744 1804
1806 verify_watcher (EV_A_ ws [cnt]); 1866 verify_watcher (EV_A_ ws [cnt]);
1807 } 1867 }
1808} 1868}
1809#endif 1869#endif
1810 1870
1811#if EV_MINIMAL < 2 1871#if EV_FEATURE_API
1812void 1872void
1813ev_loop_verify (EV_P) 1873ev_loop_verify (EV_P)
1814{ 1874{
1815#if EV_VERIFY 1875#if EV_VERIFY
1816 int i; 1876 int i;
1857#if EV_ASYNC_ENABLE 1917#if EV_ASYNC_ENABLE
1858 assert (asyncmax >= asynccnt); 1918 assert (asyncmax >= asynccnt);
1859 array_verify (EV_A_ (W *)asyncs, asynccnt); 1919 array_verify (EV_A_ (W *)asyncs, asynccnt);
1860#endif 1920#endif
1861 1921
1922#if EV_PREPARE_ENABLE
1862 assert (preparemax >= preparecnt); 1923 assert (preparemax >= preparecnt);
1863 array_verify (EV_A_ (W *)prepares, preparecnt); 1924 array_verify (EV_A_ (W *)prepares, preparecnt);
1925#endif
1864 1926
1927#if EV_CHECK_ENABLE
1865 assert (checkmax >= checkcnt); 1928 assert (checkmax >= checkcnt);
1866 array_verify (EV_A_ (W *)checks, checkcnt); 1929 array_verify (EV_A_ (W *)checks, checkcnt);
1930#endif
1867 1931
1868# if 0 1932# if 0
1933#if EV_CHILD_ENABLE
1869 for (w = (ev_child *)childs [chain & (EV_PID_HASHSIZE - 1)]; w; w = (ev_child *)((WL)w)->next) 1934 for (w = (ev_child *)childs [chain & ((EV_PID_HASHSIZE) - 1)]; w; w = (ev_child *)((WL)w)->next)
1870 for (signum = EV_NSIG; signum--; ) if (signals [signum].pending) 1935 for (signum = EV_NSIG; signum--; ) if (signals [signum].pending)
1936#endif
1871# endif 1937# endif
1872#endif 1938#endif
1873} 1939}
1874#endif 1940#endif
1875 1941
1891 1957
1892 loop_init (EV_A_ flags); 1958 loop_init (EV_A_ flags);
1893 1959
1894 if (ev_backend (EV_A)) 1960 if (ev_backend (EV_A))
1895 { 1961 {
1896#ifndef _WIN32 1962#if EV_CHILD_ENABLE
1897 ev_signal_init (&childev, childcb, SIGCHLD); 1963 ev_signal_init (&childev, childcb, SIGCHLD);
1898 ev_set_priority (&childev, EV_MAXPRI); 1964 ev_set_priority (&childev, EV_MAXPRI);
1899 ev_signal_start (EV_A_ &childev); 1965 ev_signal_start (EV_A_ &childev);
1900 ev_unref (EV_A); /* child watcher should not keep loop alive */ 1966 ev_unref (EV_A); /* child watcher should not keep loop alive */
1901#endif 1967#endif
1914 EV_P = ev_default_loop_ptr; 1980 EV_P = ev_default_loop_ptr;
1915#endif 1981#endif
1916 1982
1917 ev_default_loop_ptr = 0; 1983 ev_default_loop_ptr = 0;
1918 1984
1919#ifndef _WIN32 1985#if EV_CHILD_ENABLE
1920 ev_ref (EV_A); /* child watcher */ 1986 ev_ref (EV_A); /* child watcher */
1921 ev_signal_stop (EV_A_ &childev); 1987 ev_signal_stop (EV_A_ &childev);
1922#endif 1988#endif
1923 1989
1924 loop_destroy (EV_A); 1990 loop_destroy (EV_A);
2131 ANHE_at_cache (*he); 2197 ANHE_at_cache (*he);
2132 } 2198 }
2133} 2199}
2134 2200
2135/* fetch new monotonic and realtime times from the kernel */ 2201/* fetch new monotonic and realtime times from the kernel */
2136/* also detetc if there was a timejump, and act accordingly */ 2202/* also detect if there was a timejump, and act accordingly */
2137inline_speed void 2203inline_speed void
2138time_update (EV_P_ ev_tstamp max_block) 2204time_update (EV_P_ ev_tstamp max_block)
2139{ 2205{
2140#if EV_USE_MONOTONIC 2206#if EV_USE_MONOTONIC
2141 if (expect_true (have_monotonic)) 2207 if (expect_true (have_monotonic))
2201} 2267}
2202 2268
2203void 2269void
2204ev_loop (EV_P_ int flags) 2270ev_loop (EV_P_ int flags)
2205{ 2271{
2206#if EV_MINIMAL < 2 2272#if EV_FEATURE_API
2207 ++loop_depth; 2273 ++loop_depth;
2208#endif 2274#endif
2209 2275
2210 assert (("libev: ev_loop recursion during release detected", loop_done != EVUNLOOP_RECURSE)); 2276 assert (("libev: ev_loop recursion during release detected", loop_done != EVUNLOOP_RECURSE));
2211 2277
2236 queue_events (EV_A_ (W *)forks, forkcnt, EV_FORK); 2302 queue_events (EV_A_ (W *)forks, forkcnt, EV_FORK);
2237 EV_INVOKE_PENDING; 2303 EV_INVOKE_PENDING;
2238 } 2304 }
2239#endif 2305#endif
2240 2306
2307#if EV_PREPARE_ENABLE
2241 /* queue prepare watchers (and execute them) */ 2308 /* queue prepare watchers (and execute them) */
2242 if (expect_false (preparecnt)) 2309 if (expect_false (preparecnt))
2243 { 2310 {
2244 queue_events (EV_A_ (W *)prepares, preparecnt, EV_PREPARE); 2311 queue_events (EV_A_ (W *)prepares, preparecnt, EV_PREPARE);
2245 EV_INVOKE_PENDING; 2312 EV_INVOKE_PENDING;
2246 } 2313 }
2314#endif
2247 2315
2248 if (expect_false (loop_done)) 2316 if (expect_false (loop_done))
2249 break; 2317 break;
2250 2318
2251 /* we might have forked, so reify kernel state if necessary */ 2319 /* we might have forked, so reify kernel state if necessary */
2302 waittime -= sleeptime; 2370 waittime -= sleeptime;
2303 } 2371 }
2304 } 2372 }
2305 } 2373 }
2306 2374
2307#if EV_MINIMAL < 2 2375#if EV_FEATURE_API
2308 ++loop_count; 2376 ++loop_count;
2309#endif 2377#endif
2310 assert ((loop_done = EVUNLOOP_RECURSE, 1)); /* assert for side effect */ 2378 assert ((loop_done = EVUNLOOP_RECURSE, 1)); /* assert for side effect */
2311 backend_poll (EV_A_ waittime); 2379 backend_poll (EV_A_ waittime);
2312 assert ((loop_done = EVUNLOOP_CANCEL, 1)); /* assert for side effect */ 2380 assert ((loop_done = EVUNLOOP_CANCEL, 1)); /* assert for side effect */
2324#if EV_IDLE_ENABLE 2392#if EV_IDLE_ENABLE
2325 /* queue idle watchers unless other events are pending */ 2393 /* queue idle watchers unless other events are pending */
2326 idle_reify (EV_A); 2394 idle_reify (EV_A);
2327#endif 2395#endif
2328 2396
2397#if EV_CHECK_ENABLE
2329 /* queue check watchers, to be executed first */ 2398 /* queue check watchers, to be executed first */
2330 if (expect_false (checkcnt)) 2399 if (expect_false (checkcnt))
2331 queue_events (EV_A_ (W *)checks, checkcnt, EV_CHECK); 2400 queue_events (EV_A_ (W *)checks, checkcnt, EV_CHECK);
2401#endif
2332 2402
2333 EV_INVOKE_PENDING; 2403 EV_INVOKE_PENDING;
2334 } 2404 }
2335 while (expect_true ( 2405 while (expect_true (
2336 activecnt 2406 activecnt
2339 )); 2409 ));
2340 2410
2341 if (loop_done == EVUNLOOP_ONE) 2411 if (loop_done == EVUNLOOP_ONE)
2342 loop_done = EVUNLOOP_CANCEL; 2412 loop_done = EVUNLOOP_CANCEL;
2343 2413
2344#if EV_MINIMAL < 2 2414#if EV_FEATURE_API
2345 --loop_depth; 2415 --loop_depth;
2346#endif 2416#endif
2347} 2417}
2348 2418
2349void 2419void
2475 2545
2476 if (expect_false (ev_is_active (w))) 2546 if (expect_false (ev_is_active (w)))
2477 return; 2547 return;
2478 2548
2479 assert (("libev: ev_io_start called with negative fd", fd >= 0)); 2549 assert (("libev: ev_io_start called with negative fd", fd >= 0));
2480 assert (("libev: ev_io start called with illegal event mask", !(w->events & ~(EV__IOFDSET | EV_READ | EV_WRITE)))); 2550 assert (("libev: ev_io_start called with illegal event mask", !(w->events & ~(EV__IOFDSET | EV_READ | EV_WRITE))));
2481 2551
2482 EV_FREQUENT_CHECK; 2552 EV_FREQUENT_CHECK;
2483 2553
2484 ev_start (EV_A_ (W)w, 1); 2554 ev_start (EV_A_ (W)w, 1);
2485 array_needsize (ANFD, anfds, anfdmax, fd + 1, array_init_zero); 2555 array_needsize (ANFD, anfds, anfdmax, fd + 1, array_init_zero);
2555 timers [active] = timers [timercnt + HEAP0]; 2625 timers [active] = timers [timercnt + HEAP0];
2556 adjustheap (timers, timercnt, active); 2626 adjustheap (timers, timercnt, active);
2557 } 2627 }
2558 } 2628 }
2559 2629
2560 EV_FREQUENT_CHECK;
2561
2562 ev_at (w) -= mn_now; 2630 ev_at (w) -= mn_now;
2563 2631
2564 ev_stop (EV_A_ (W)w); 2632 ev_stop (EV_A_ (W)w);
2633
2634 EV_FREQUENT_CHECK;
2565} 2635}
2566 2636
2567void noinline 2637void noinline
2568ev_timer_again (EV_P_ ev_timer *w) 2638ev_timer_again (EV_P_ ev_timer *w)
2569{ 2639{
2648 periodics [active] = periodics [periodiccnt + HEAP0]; 2718 periodics [active] = periodics [periodiccnt + HEAP0];
2649 adjustheap (periodics, periodiccnt, active); 2719 adjustheap (periodics, periodiccnt, active);
2650 } 2720 }
2651 } 2721 }
2652 2722
2653 EV_FREQUENT_CHECK;
2654
2655 ev_stop (EV_A_ (W)w); 2723 ev_stop (EV_A_ (W)w);
2724
2725 EV_FREQUENT_CHECK;
2656} 2726}
2657 2727
2658void noinline 2728void noinline
2659ev_periodic_again (EV_P_ ev_periodic *w) 2729ev_periodic_again (EV_P_ ev_periodic *w)
2660{ 2730{
2665#endif 2735#endif
2666 2736
2667#ifndef SA_RESTART 2737#ifndef SA_RESTART
2668# define SA_RESTART 0 2738# define SA_RESTART 0
2669#endif 2739#endif
2740
2741#if EV_SIGNAL_ENABLE
2670 2742
2671void noinline 2743void noinline
2672ev_signal_start (EV_P_ ev_signal *w) 2744ev_signal_start (EV_P_ ev_signal *w)
2673{ 2745{
2674 if (expect_false (ev_is_active (w))) 2746 if (expect_false (ev_is_active (w)))
2721 if (!((WL)w)->next) 2793 if (!((WL)w)->next)
2722# if EV_USE_SIGNALFD 2794# if EV_USE_SIGNALFD
2723 if (sigfd < 0) /*TODO*/ 2795 if (sigfd < 0) /*TODO*/
2724# endif 2796# endif
2725 { 2797 {
2726# if _WIN32 2798# ifdef _WIN32
2799 evpipe_init (EV_A);
2800
2727 signal (w->signum, ev_sighandler); 2801 signal (w->signum, ev_sighandler);
2728# else 2802# else
2729 struct sigaction sa; 2803 struct sigaction sa;
2730 2804
2731 evpipe_init (EV_A); 2805 evpipe_init (EV_A);
2762 signals [w->signum - 1].loop = 0; /* unattach from signal */ 2836 signals [w->signum - 1].loop = 0; /* unattach from signal */
2763#endif 2837#endif
2764#if EV_USE_SIGNALFD 2838#if EV_USE_SIGNALFD
2765 if (sigfd >= 0) 2839 if (sigfd >= 0)
2766 { 2840 {
2767 sigprocmask (SIG_UNBLOCK, &sigfd_set, 0);//D 2841 sigset_t ss;
2842
2843 sigemptyset (&ss);
2844 sigaddset (&ss, w->signum);
2768 sigdelset (&sigfd_set, w->signum); 2845 sigdelset (&sigfd_set, w->signum);
2846
2769 signalfd (sigfd, &sigfd_set, 0); 2847 signalfd (sigfd, &sigfd_set, 0);
2770 sigprocmask (SIG_BLOCK, &sigfd_set, 0);//D 2848 sigprocmask (SIG_UNBLOCK, &ss, 0);
2771 /*TODO: maybe unblock signal? */
2772 } 2849 }
2773 else 2850 else
2774#endif 2851#endif
2775 signal (w->signum, SIG_DFL); 2852 signal (w->signum, SIG_DFL);
2776 } 2853 }
2777 2854
2778 EV_FREQUENT_CHECK; 2855 EV_FREQUENT_CHECK;
2779} 2856}
2780 2857
2858#endif
2859
2860#if EV_CHILD_ENABLE
2861
2781void 2862void
2782ev_child_start (EV_P_ ev_child *w) 2863ev_child_start (EV_P_ ev_child *w)
2783{ 2864{
2784#if EV_MULTIPLICITY 2865#if EV_MULTIPLICITY
2785 assert (("libev: child watchers are only supported in the default loop", loop == ev_default_loop_ptr)); 2866 assert (("libev: child watchers are only supported in the default loop", loop == ev_default_loop_ptr));
2788 return; 2869 return;
2789 2870
2790 EV_FREQUENT_CHECK; 2871 EV_FREQUENT_CHECK;
2791 2872
2792 ev_start (EV_A_ (W)w, 1); 2873 ev_start (EV_A_ (W)w, 1);
2793 wlist_add (&childs [w->pid & (EV_PID_HASHSIZE - 1)], (WL)w); 2874 wlist_add (&childs [w->pid & ((EV_PID_HASHSIZE) - 1)], (WL)w);
2794 2875
2795 EV_FREQUENT_CHECK; 2876 EV_FREQUENT_CHECK;
2796} 2877}
2797 2878
2798void 2879void
2802 if (expect_false (!ev_is_active (w))) 2883 if (expect_false (!ev_is_active (w)))
2803 return; 2884 return;
2804 2885
2805 EV_FREQUENT_CHECK; 2886 EV_FREQUENT_CHECK;
2806 2887
2807 wlist_del (&childs [w->pid & (EV_PID_HASHSIZE - 1)], (WL)w); 2888 wlist_del (&childs [w->pid & ((EV_PID_HASHSIZE) - 1)], (WL)w);
2808 ev_stop (EV_A_ (W)w); 2889 ev_stop (EV_A_ (W)w);
2809 2890
2810 EV_FREQUENT_CHECK; 2891 EV_FREQUENT_CHECK;
2811} 2892}
2893
2894#endif
2812 2895
2813#if EV_STAT_ENABLE 2896#if EV_STAT_ENABLE
2814 2897
2815# ifdef _WIN32 2898# ifdef _WIN32
2816# undef lstat 2899# undef lstat
2822#define MIN_STAT_INTERVAL 0.1074891 2905#define MIN_STAT_INTERVAL 0.1074891
2823 2906
2824static void noinline stat_timer_cb (EV_P_ ev_timer *w_, int revents); 2907static void noinline stat_timer_cb (EV_P_ ev_timer *w_, int revents);
2825 2908
2826#if EV_USE_INOTIFY 2909#if EV_USE_INOTIFY
2827# define EV_INOTIFY_BUFSIZE 8192 2910
2911/* the * 2 is to allow for alignment padding, which for some reason is >> 8 */
2912# define EV_INOTIFY_BUFSIZE (sizeof (struct inotify_event) * 2 + NAME_MAX)
2828 2913
2829static void noinline 2914static void noinline
2830infy_add (EV_P_ ev_stat *w) 2915infy_add (EV_P_ ev_stat *w)
2831{ 2916{
2832 w->wd = inotify_add_watch (fs_fd, w->path, IN_ATTRIB | IN_DELETE_SELF | IN_MOVE_SELF | IN_MODIFY | IN_DONT_FOLLOW | IN_MASK_ADD); 2917 w->wd = inotify_add_watch (fs_fd, w->path, IN_ATTRIB | IN_DELETE_SELF | IN_MOVE_SELF | IN_MODIFY | IN_DONT_FOLLOW | IN_MASK_ADD);
2833 2918
2834 if (w->wd < 0) 2919 if (w->wd >= 0)
2920 {
2921 struct statfs sfs;
2922
2923 /* now local changes will be tracked by inotify, but remote changes won't */
2924 /* unless the filesystem is known to be local, we therefore still poll */
2925 /* also do poll on <2.6.25, but with normal frequency */
2926
2927 if (!fs_2625)
2928 w->timer.repeat = w->interval ? w->interval : DEF_STAT_INTERVAL;
2929 else if (!statfs (w->path, &sfs)
2930 && (sfs.f_type == 0x1373 /* devfs */
2931 || sfs.f_type == 0xEF53 /* ext2/3 */
2932 || sfs.f_type == 0x3153464a /* jfs */
2933 || sfs.f_type == 0x52654973 /* reiser3 */
2934 || sfs.f_type == 0x01021994 /* tempfs */
2935 || sfs.f_type == 0x58465342 /* xfs */))
2936 w->timer.repeat = 0.; /* filesystem is local, kernel new enough */
2937 else
2938 w->timer.repeat = w->interval ? w->interval : NFS_STAT_INTERVAL; /* remote, use reduced frequency */
2835 { 2939 }
2940 else
2941 {
2942 /* can't use inotify, continue to stat */
2836 w->timer.repeat = w->interval ? w->interval : DEF_STAT_INTERVAL; 2943 w->timer.repeat = w->interval ? w->interval : DEF_STAT_INTERVAL;
2837 ev_timer_again (EV_A_ &w->timer); /* this is not race-free, so we still need to recheck periodically */
2838 2944
2839 /* monitor some parent directory for speedup hints */ 2945 /* if path is not there, monitor some parent directory for speedup hints */
2840 /* note that exceeding the hardcoded path limit is not a correctness issue, */ 2946 /* note that exceeding the hardcoded path limit is not a correctness issue, */
2841 /* but an efficiency issue only */ 2947 /* but an efficiency issue only */
2842 if ((errno == ENOENT || errno == EACCES) && strlen (w->path) < 4096) 2948 if ((errno == ENOENT || errno == EACCES) && strlen (w->path) < 4096)
2843 { 2949 {
2844 char path [4096]; 2950 char path [4096];
2860 while (w->wd < 0 && (errno == ENOENT || errno == EACCES)); 2966 while (w->wd < 0 && (errno == ENOENT || errno == EACCES));
2861 } 2967 }
2862 } 2968 }
2863 2969
2864 if (w->wd >= 0) 2970 if (w->wd >= 0)
2865 {
2866 struct statfs sfs;
2867
2868 wlist_add (&fs_hash [w->wd & (EV_INOTIFY_HASHSIZE - 1)].head, (WL)w); 2971 wlist_add (&fs_hash [w->wd & ((EV_INOTIFY_HASHSIZE) - 1)].head, (WL)w);
2869 2972
2870 /* now local changes will be tracked by inotify, but remote changes won't */ 2973 /* now re-arm timer, if required */
2871 /* unless the filesystem it known to be local, we therefore still poll */ 2974 if (ev_is_active (&w->timer)) ev_ref (EV_A);
2872 /* also do poll on <2.6.25, but with normal frequency */
2873
2874 if (fs_2625 && !statfs (w->path, &sfs))
2875 if (sfs.f_type == 0x1373 /* devfs */
2876 || sfs.f_type == 0xEF53 /* ext2/3 */
2877 || sfs.f_type == 0x3153464a /* jfs */
2878 || sfs.f_type == 0x52654973 /* reiser3 */
2879 || sfs.f_type == 0x01021994 /* tempfs */
2880 || sfs.f_type == 0x58465342 /* xfs */)
2881 return;
2882
2883 w->timer.repeat = w->interval ? w->interval : fs_2625 ? NFS_STAT_INTERVAL : DEF_STAT_INTERVAL;
2884 ev_timer_again (EV_A_ &w->timer); 2975 ev_timer_again (EV_A_ &w->timer);
2885 } 2976 if (ev_is_active (&w->timer)) ev_unref (EV_A);
2886} 2977}
2887 2978
2888static void noinline 2979static void noinline
2889infy_del (EV_P_ ev_stat *w) 2980infy_del (EV_P_ ev_stat *w)
2890{ 2981{
2893 2984
2894 if (wd < 0) 2985 if (wd < 0)
2895 return; 2986 return;
2896 2987
2897 w->wd = -2; 2988 w->wd = -2;
2898 slot = wd & (EV_INOTIFY_HASHSIZE - 1); 2989 slot = wd & ((EV_INOTIFY_HASHSIZE) - 1);
2899 wlist_del (&fs_hash [slot].head, (WL)w); 2990 wlist_del (&fs_hash [slot].head, (WL)w);
2900 2991
2901 /* remove this watcher, if others are watching it, they will rearm */ 2992 /* remove this watcher, if others are watching it, they will rearm */
2902 inotify_rm_watch (fs_fd, wd); 2993 inotify_rm_watch (fs_fd, wd);
2903} 2994}
2905static void noinline 2996static void noinline
2906infy_wd (EV_P_ int slot, int wd, struct inotify_event *ev) 2997infy_wd (EV_P_ int slot, int wd, struct inotify_event *ev)
2907{ 2998{
2908 if (slot < 0) 2999 if (slot < 0)
2909 /* overflow, need to check for all hash slots */ 3000 /* overflow, need to check for all hash slots */
2910 for (slot = 0; slot < EV_INOTIFY_HASHSIZE; ++slot) 3001 for (slot = 0; slot < (EV_INOTIFY_HASHSIZE); ++slot)
2911 infy_wd (EV_A_ slot, wd, ev); 3002 infy_wd (EV_A_ slot, wd, ev);
2912 else 3003 else
2913 { 3004 {
2914 WL w_; 3005 WL w_;
2915 3006
2916 for (w_ = fs_hash [slot & (EV_INOTIFY_HASHSIZE - 1)].head; w_; ) 3007 for (w_ = fs_hash [slot & ((EV_INOTIFY_HASHSIZE) - 1)].head; w_; )
2917 { 3008 {
2918 ev_stat *w = (ev_stat *)w_; 3009 ev_stat *w = (ev_stat *)w_;
2919 w_ = w_->next; /* lets us remove this watcher and all before it */ 3010 w_ = w_->next; /* lets us remove this watcher and all before it */
2920 3011
2921 if (w->wd == wd || wd == -1) 3012 if (w->wd == wd || wd == -1)
2922 { 3013 {
2923 if (ev->mask & (IN_IGNORED | IN_UNMOUNT | IN_DELETE_SELF)) 3014 if (ev->mask & (IN_IGNORED | IN_UNMOUNT | IN_DELETE_SELF))
2924 { 3015 {
2925 wlist_del (&fs_hash [slot & (EV_INOTIFY_HASHSIZE - 1)].head, (WL)w); 3016 wlist_del (&fs_hash [slot & ((EV_INOTIFY_HASHSIZE) - 1)].head, (WL)w);
2926 w->wd = -1; 3017 w->wd = -1;
2927 infy_add (EV_A_ w); /* re-add, no matter what */ 3018 infy_add (EV_A_ w); /* re-add, no matter what */
2928 } 3019 }
2929 3020
2930 stat_timer_cb (EV_A_ &w->timer, 0); 3021 stat_timer_cb (EV_A_ &w->timer, 0);
2935 3026
2936static void 3027static void
2937infy_cb (EV_P_ ev_io *w, int revents) 3028infy_cb (EV_P_ ev_io *w, int revents)
2938{ 3029{
2939 char buf [EV_INOTIFY_BUFSIZE]; 3030 char buf [EV_INOTIFY_BUFSIZE];
2940 struct inotify_event *ev = (struct inotify_event *)buf;
2941 int ofs; 3031 int ofs;
2942 int len = read (fs_fd, buf, sizeof (buf)); 3032 int len = read (fs_fd, buf, sizeof (buf));
2943 3033
2944 for (ofs = 0; ofs < len; ofs += sizeof (struct inotify_event) + ev->len) 3034 for (ofs = 0; ofs < len; )
3035 {
3036 struct inotify_event *ev = (struct inotify_event *)(buf + ofs);
2945 infy_wd (EV_A_ ev->wd, ev->wd, ev); 3037 infy_wd (EV_A_ ev->wd, ev->wd, ev);
3038 ofs += sizeof (struct inotify_event) + ev->len;
3039 }
3040}
3041
3042inline_size unsigned int
3043ev_linux_version (void)
3044{
3045 struct utsname buf;
3046 unsigned int v;
3047 int i;
3048 char *p = buf.release;
3049
3050 if (uname (&buf))
3051 return 0;
3052
3053 for (i = 3+1; --i; )
3054 {
3055 unsigned int c = 0;
3056
3057 for (;;)
3058 {
3059 if (*p >= '0' && *p <= '9')
3060 c = c * 10 + *p++ - '0';
3061 else
3062 {
3063 p += *p == '.';
3064 break;
3065 }
3066 }
3067
3068 v = (v << 8) | c;
3069 }
3070
3071 return v;
2946} 3072}
2947 3073
2948inline_size void 3074inline_size void
2949check_2625 (EV_P) 3075ev_check_2625 (EV_P)
2950{ 3076{
2951 /* kernels < 2.6.25 are borked 3077 /* kernels < 2.6.25 are borked
2952 * http://www.ussg.indiana.edu/hypermail/linux/kernel/0711.3/1208.html 3078 * http://www.ussg.indiana.edu/hypermail/linux/kernel/0711.3/1208.html
2953 */ 3079 */
2954 struct utsname buf; 3080 if (ev_linux_version () < 0x020619)
2955 int major, minor, micro;
2956
2957 if (uname (&buf))
2958 return; 3081 return;
2959 3082
2960 if (sscanf (buf.release, "%d.%d.%d", &major, &minor, &micro) != 3)
2961 return;
2962
2963 if (major < 2
2964 || (major == 2 && minor < 6)
2965 || (major == 2 && minor == 6 && micro < 25))
2966 return;
2967
2968 fs_2625 = 1; 3083 fs_2625 = 1;
3084}
3085
3086inline_size int
3087infy_newfd (void)
3088{
3089#if defined (IN_CLOEXEC) && defined (IN_NONBLOCK)
3090 int fd = inotify_init1 (IN_CLOEXEC | IN_NONBLOCK);
3091 if (fd >= 0)
3092 return fd;
3093#endif
3094 return inotify_init ();
2969} 3095}
2970 3096
2971inline_size void 3097inline_size void
2972infy_init (EV_P) 3098infy_init (EV_P)
2973{ 3099{
2974 if (fs_fd != -2) 3100 if (fs_fd != -2)
2975 return; 3101 return;
2976 3102
2977 fs_fd = -1; 3103 fs_fd = -1;
2978 3104
2979 check_2625 (EV_A); 3105 ev_check_2625 (EV_A);
2980 3106
2981 fs_fd = inotify_init (); 3107 fs_fd = infy_newfd ();
2982 3108
2983 if (fs_fd >= 0) 3109 if (fs_fd >= 0)
2984 { 3110 {
3111 fd_intern (fs_fd);
2985 ev_io_init (&fs_w, infy_cb, fs_fd, EV_READ); 3112 ev_io_init (&fs_w, infy_cb, fs_fd, EV_READ);
2986 ev_set_priority (&fs_w, EV_MAXPRI); 3113 ev_set_priority (&fs_w, EV_MAXPRI);
2987 ev_io_start (EV_A_ &fs_w); 3114 ev_io_start (EV_A_ &fs_w);
3115 ev_unref (EV_A);
2988 } 3116 }
2989} 3117}
2990 3118
2991inline_size void 3119inline_size void
2992infy_fork (EV_P) 3120infy_fork (EV_P)
2994 int slot; 3122 int slot;
2995 3123
2996 if (fs_fd < 0) 3124 if (fs_fd < 0)
2997 return; 3125 return;
2998 3126
3127 ev_ref (EV_A);
3128 ev_io_stop (EV_A_ &fs_w);
2999 close (fs_fd); 3129 close (fs_fd);
3000 fs_fd = inotify_init (); 3130 fs_fd = infy_newfd ();
3001 3131
3132 if (fs_fd >= 0)
3133 {
3134 fd_intern (fs_fd);
3135 ev_io_set (&fs_w, fs_fd, EV_READ);
3136 ev_io_start (EV_A_ &fs_w);
3137 ev_unref (EV_A);
3138 }
3139
3002 for (slot = 0; slot < EV_INOTIFY_HASHSIZE; ++slot) 3140 for (slot = 0; slot < (EV_INOTIFY_HASHSIZE); ++slot)
3003 { 3141 {
3004 WL w_ = fs_hash [slot].head; 3142 WL w_ = fs_hash [slot].head;
3005 fs_hash [slot].head = 0; 3143 fs_hash [slot].head = 0;
3006 3144
3007 while (w_) 3145 while (w_)
3012 w->wd = -1; 3150 w->wd = -1;
3013 3151
3014 if (fs_fd >= 0) 3152 if (fs_fd >= 0)
3015 infy_add (EV_A_ w); /* re-add, no matter what */ 3153 infy_add (EV_A_ w); /* re-add, no matter what */
3016 else 3154 else
3155 {
3156 w->timer.repeat = w->interval ? w->interval : DEF_STAT_INTERVAL;
3157 if (ev_is_active (&w->timer)) ev_ref (EV_A);
3017 ev_timer_again (EV_A_ &w->timer); 3158 ev_timer_again (EV_A_ &w->timer);
3159 if (ev_is_active (&w->timer)) ev_unref (EV_A);
3160 }
3018 } 3161 }
3019 } 3162 }
3020} 3163}
3021 3164
3022#endif 3165#endif
3039static void noinline 3182static void noinline
3040stat_timer_cb (EV_P_ ev_timer *w_, int revents) 3183stat_timer_cb (EV_P_ ev_timer *w_, int revents)
3041{ 3184{
3042 ev_stat *w = (ev_stat *)(((char *)w_) - offsetof (ev_stat, timer)); 3185 ev_stat *w = (ev_stat *)(((char *)w_) - offsetof (ev_stat, timer));
3043 3186
3044 /* we copy this here each the time so that */ 3187 ev_statdata prev = w->attr;
3045 /* prev has the old value when the callback gets invoked */
3046 w->prev = w->attr;
3047 ev_stat_stat (EV_A_ w); 3188 ev_stat_stat (EV_A_ w);
3048 3189
3049 /* memcmp doesn't work on netbsd, they.... do stuff to their struct stat */ 3190 /* memcmp doesn't work on netbsd, they.... do stuff to their struct stat */
3050 if ( 3191 if (
3051 w->prev.st_dev != w->attr.st_dev 3192 prev.st_dev != w->attr.st_dev
3052 || w->prev.st_ino != w->attr.st_ino 3193 || prev.st_ino != w->attr.st_ino
3053 || w->prev.st_mode != w->attr.st_mode 3194 || prev.st_mode != w->attr.st_mode
3054 || w->prev.st_nlink != w->attr.st_nlink 3195 || prev.st_nlink != w->attr.st_nlink
3055 || w->prev.st_uid != w->attr.st_uid 3196 || prev.st_uid != w->attr.st_uid
3056 || w->prev.st_gid != w->attr.st_gid 3197 || prev.st_gid != w->attr.st_gid
3057 || w->prev.st_rdev != w->attr.st_rdev 3198 || prev.st_rdev != w->attr.st_rdev
3058 || w->prev.st_size != w->attr.st_size 3199 || prev.st_size != w->attr.st_size
3059 || w->prev.st_atime != w->attr.st_atime 3200 || prev.st_atime != w->attr.st_atime
3060 || w->prev.st_mtime != w->attr.st_mtime 3201 || prev.st_mtime != w->attr.st_mtime
3061 || w->prev.st_ctime != w->attr.st_ctime 3202 || prev.st_ctime != w->attr.st_ctime
3062 ) { 3203 ) {
3204 /* we only update w->prev on actual differences */
3205 /* in case we test more often than invoke the callback, */
3206 /* to ensure that prev is always different to attr */
3207 w->prev = prev;
3208
3063 #if EV_USE_INOTIFY 3209 #if EV_USE_INOTIFY
3064 if (fs_fd >= 0) 3210 if (fs_fd >= 0)
3065 { 3211 {
3066 infy_del (EV_A_ w); 3212 infy_del (EV_A_ w);
3067 infy_add (EV_A_ w); 3213 infy_add (EV_A_ w);
3092 3238
3093 if (fs_fd >= 0) 3239 if (fs_fd >= 0)
3094 infy_add (EV_A_ w); 3240 infy_add (EV_A_ w);
3095 else 3241 else
3096#endif 3242#endif
3243 {
3097 ev_timer_again (EV_A_ &w->timer); 3244 ev_timer_again (EV_A_ &w->timer);
3245 ev_unref (EV_A);
3246 }
3098 3247
3099 ev_start (EV_A_ (W)w, 1); 3248 ev_start (EV_A_ (W)w, 1);
3100 3249
3101 EV_FREQUENT_CHECK; 3250 EV_FREQUENT_CHECK;
3102} 3251}
3111 EV_FREQUENT_CHECK; 3260 EV_FREQUENT_CHECK;
3112 3261
3113#if EV_USE_INOTIFY 3262#if EV_USE_INOTIFY
3114 infy_del (EV_A_ w); 3263 infy_del (EV_A_ w);
3115#endif 3264#endif
3265
3266 if (ev_is_active (&w->timer))
3267 {
3268 ev_ref (EV_A);
3116 ev_timer_stop (EV_A_ &w->timer); 3269 ev_timer_stop (EV_A_ &w->timer);
3270 }
3117 3271
3118 ev_stop (EV_A_ (W)w); 3272 ev_stop (EV_A_ (W)w);
3119 3273
3120 EV_FREQUENT_CHECK; 3274 EV_FREQUENT_CHECK;
3121} 3275}
3166 3320
3167 EV_FREQUENT_CHECK; 3321 EV_FREQUENT_CHECK;
3168} 3322}
3169#endif 3323#endif
3170 3324
3325#if EV_PREPARE_ENABLE
3171void 3326void
3172ev_prepare_start (EV_P_ ev_prepare *w) 3327ev_prepare_start (EV_P_ ev_prepare *w)
3173{ 3328{
3174 if (expect_false (ev_is_active (w))) 3329 if (expect_false (ev_is_active (w)))
3175 return; 3330 return;
3201 3356
3202 ev_stop (EV_A_ (W)w); 3357 ev_stop (EV_A_ (W)w);
3203 3358
3204 EV_FREQUENT_CHECK; 3359 EV_FREQUENT_CHECK;
3205} 3360}
3361#endif
3206 3362
3363#if EV_CHECK_ENABLE
3207void 3364void
3208ev_check_start (EV_P_ ev_check *w) 3365ev_check_start (EV_P_ ev_check *w)
3209{ 3366{
3210 if (expect_false (ev_is_active (w))) 3367 if (expect_false (ev_is_active (w)))
3211 return; 3368 return;
3237 3394
3238 ev_stop (EV_A_ (W)w); 3395 ev_stop (EV_A_ (W)w);
3239 3396
3240 EV_FREQUENT_CHECK; 3397 EV_FREQUENT_CHECK;
3241} 3398}
3399#endif
3242 3400
3243#if EV_EMBED_ENABLE 3401#if EV_EMBED_ENABLE
3244void noinline 3402void noinline
3245ev_embed_sweep (EV_P_ ev_embed *w) 3403ev_embed_sweep (EV_P_ ev_embed *w)
3246{ 3404{
3340 EV_FREQUENT_CHECK; 3498 EV_FREQUENT_CHECK;
3341 3499
3342 ev_io_stop (EV_A_ &w->io); 3500 ev_io_stop (EV_A_ &w->io);
3343 ev_prepare_stop (EV_A_ &w->prepare); 3501 ev_prepare_stop (EV_A_ &w->prepare);
3344 ev_fork_stop (EV_A_ &w->fork); 3502 ev_fork_stop (EV_A_ &w->fork);
3503
3504 ev_stop (EV_A_ (W)w);
3345 3505
3346 EV_FREQUENT_CHECK; 3506 EV_FREQUENT_CHECK;
3347} 3507}
3348#endif 3508#endif
3349 3509
3573 if (types & EV_ASYNC) 3733 if (types & EV_ASYNC)
3574 for (i = asynccnt; i--; ) 3734 for (i = asynccnt; i--; )
3575 cb (EV_A_ EV_ASYNC, asyncs [i]); 3735 cb (EV_A_ EV_ASYNC, asyncs [i]);
3576#endif 3736#endif
3577 3737
3738#if EV_PREPARE_ENABLE
3578 if (types & EV_PREPARE) 3739 if (types & EV_PREPARE)
3579 for (i = preparecnt; i--; ) 3740 for (i = preparecnt; i--; )
3580#if EV_EMBED_ENABLE 3741# if EV_EMBED_ENABLE
3581 if (ev_cb (prepares [i]) != embed_prepare_cb) 3742 if (ev_cb (prepares [i]) != embed_prepare_cb)
3582#endif 3743# endif
3583 cb (EV_A_ EV_PREPARE, prepares [i]); 3744 cb (EV_A_ EV_PREPARE, prepares [i]);
3745#endif
3584 3746
3747#if EV_CHECK_ENABLE
3585 if (types & EV_CHECK) 3748 if (types & EV_CHECK)
3586 for (i = checkcnt; i--; ) 3749 for (i = checkcnt; i--; )
3587 cb (EV_A_ EV_CHECK, checks [i]); 3750 cb (EV_A_ EV_CHECK, checks [i]);
3751#endif
3588 3752
3753#if EV_SIGNAL_ENABLE
3589 if (types & EV_SIGNAL) 3754 if (types & EV_SIGNAL)
3590 for (i = 0; i < EV_NSIG - 1; ++i) 3755 for (i = 0; i < EV_NSIG - 1; ++i)
3591 for (wl = signals [i].head; wl; ) 3756 for (wl = signals [i].head; wl; )
3592 { 3757 {
3593 wn = wl->next; 3758 wn = wl->next;
3594 cb (EV_A_ EV_SIGNAL, wl); 3759 cb (EV_A_ EV_SIGNAL, wl);
3595 wl = wn; 3760 wl = wn;
3596 } 3761 }
3762#endif
3597 3763
3764#if EV_CHILD_ENABLE
3598 if (types & EV_CHILD) 3765 if (types & EV_CHILD)
3599 for (i = EV_PID_HASHSIZE; i--; ) 3766 for (i = (EV_PID_HASHSIZE); i--; )
3600 for (wl = childs [i]; wl; ) 3767 for (wl = childs [i]; wl; )
3601 { 3768 {
3602 wn = wl->next; 3769 wn = wl->next;
3603 cb (EV_A_ EV_CHILD, wl); 3770 cb (EV_A_ EV_CHILD, wl);
3604 wl = wn; 3771 wl = wn;
3605 } 3772 }
3773#endif
3606/* EV_STAT 0x00001000 /* stat data changed */ 3774/* EV_STAT 0x00001000 /* stat data changed */
3607/* EV_EMBED 0x00010000 /* embedded event loop needs sweep */ 3775/* EV_EMBED 0x00010000 /* embedded event loop needs sweep */
3608} 3776}
3609#endif 3777#endif
3610 3778

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines