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

Comparing libev/ev.c (file contents):
Revision 1.488 by root, Fri Dec 21 06:57:09 2018 UTC vs.
Revision 1.494 by root, Sun Jun 23 23:28:45 2019 UTC

1/* 1/*
2 * libev event processing core, watcher management 2 * libev event processing core, watcher management
3 * 3 *
4 * Copyright (c) 2007-2018 Marc Alexander Lehmann <libev@schmorp.de> 4 * Copyright (c) 2007-2019 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 *
115# else 115# else
116# undef EV_USE_EPOLL 116# undef EV_USE_EPOLL
117# define EV_USE_EPOLL 0 117# define EV_USE_EPOLL 0
118# endif 118# endif
119 119
120# if HAVE_LINUX_AIO_ABI_H
121# ifndef EV_USE_LINUXAIO
122# define EV_USE_LINUXAIO EV_FEATURE_BACKENDS
123# endif
124# else
125# undef EV_USE_LINUXAIO
126# define EV_USE_LINUXAIO 0
127# endif
128
120# if HAVE_KQUEUE && HAVE_SYS_EVENT_H 129# if HAVE_KQUEUE && HAVE_SYS_EVENT_H
121# ifndef EV_USE_KQUEUE 130# ifndef EV_USE_KQUEUE
122# define EV_USE_KQUEUE EV_FEATURE_BACKENDS 131# define EV_USE_KQUEUE EV_FEATURE_BACKENDS
123# endif 132# endif
124# else 133# else
315 324
316#ifndef EV_USE_PORT 325#ifndef EV_USE_PORT
317# define EV_USE_PORT 0 326# define EV_USE_PORT 0
318#endif 327#endif
319 328
329#ifndef EV_USE_LINUXAIO
330# if __linux /* libev currently assumes linux/aio_abi.h is always available on linux */
331# define EV_USE_LINUXAIO 1
332# else
333# define EV_USE_LINUXAIO 0
334# endif
335#endif
336
320#ifndef EV_USE_INOTIFY 337#ifndef EV_USE_INOTIFY
321# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 4)) 338# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 4))
322# define EV_USE_INOTIFY EV_FEATURE_OS 339# define EV_USE_INOTIFY EV_FEATURE_OS
323# else 340# else
324# define EV_USE_INOTIFY 0 341# define EV_USE_INOTIFY 0
416 433
417#if !EV_USE_NANOSLEEP 434#if !EV_USE_NANOSLEEP
418/* hp-ux has it in sys/time.h, which we unconditionally include above */ 435/* hp-ux has it in sys/time.h, which we unconditionally include above */
419# if !defined _WIN32 && !defined __hpux 436# if !defined _WIN32 && !defined __hpux
420# include <sys/select.h> 437# include <sys/select.h>
438# endif
439#endif
440
441#if EV_USE_LINUXAIO
442# include <sys/syscall.h>
443# if !SYS_io_getevents || !EV_USE_EPOLL
444# undef EV_USE_LINUXAIO
445# define EV_USE_LINUXAIO 0
421# endif 446# endif
422#endif 447#endif
423 448
424#if EV_USE_INOTIFY 449#if EV_USE_INOTIFY
425# include <sys/statfs.h> 450# include <sys/statfs.h>
1543# define ABSPRI(w) (((W)w), 0) 1568# define ABSPRI(w) (((W)w), 0)
1544#else 1569#else
1545# define ABSPRI(w) (((W)w)->priority - EV_MINPRI) 1570# define ABSPRI(w) (((W)w)->priority - EV_MINPRI)
1546#endif 1571#endif
1547 1572
1548#define EMPTY /* required for microsofts broken pseudo-c compiler */ 1573#define EMPTY /* required for microsofts broken pseudo-c compiler */
1549#define EMPTY2(a,b) /* used to suppress some warnings */
1550 1574
1551typedef ev_watcher *W; 1575typedef ev_watcher *W;
1552typedef ev_watcher_list *WL; 1576typedef ev_watcher_list *WL;
1553typedef ev_watcher_time *WT; 1577typedef ev_watcher_time *WT;
1554 1578
1578#ifdef _WIN32 1602#ifdef _WIN32
1579# include "ev_win32.c" 1603# include "ev_win32.c"
1580#endif 1604#endif
1581 1605
1582/*****************************************************************************/ 1606/*****************************************************************************/
1607
1608#if EV_USE_LINUXAIO
1609# include <linux/aio_abi.h> /* probably only needed for aio_context_t */
1610#endif
1583 1611
1584/* define a suitable floor function (only used by periodics atm) */ 1612/* define a suitable floor function (only used by periodics atm) */
1585 1613
1586#if EV_USE_FLOOR 1614#if EV_USE_FLOOR
1587# include <math.h> 1615# include <math.h>
1770typedef struct 1798typedef struct
1771{ 1799{
1772 WL head; 1800 WL head;
1773 unsigned char events; /* the events watched for */ 1801 unsigned char events; /* the events watched for */
1774 unsigned char reify; /* flag set when this ANFD needs reification (EV_ANFD_REIFY, EV__IOFDSET) */ 1802 unsigned char reify; /* flag set when this ANFD needs reification (EV_ANFD_REIFY, EV__IOFDSET) */
1775 unsigned char emask; /* the epoll backend stores the actual kernel mask in here */ 1803 unsigned char emask; /* some backends store the actual kernel mask in here */
1776 unsigned char unused; 1804 unsigned char unused;
1777#if EV_USE_EPOLL 1805#if EV_USE_EPOLL
1778 unsigned int egen; /* generation counter to counter epoll bugs */ 1806 unsigned int egen; /* generation counter to counter epoll bugs */
1779#endif 1807#endif
1780#if EV_SELECT_IS_WINSOCKET || EV_USE_IOCP 1808#if EV_SELECT_IS_WINSOCKET || EV_USE_IOCP
1961{ 1989{
1962 *cur = array_nextsize (elem, *cur, cnt); 1990 *cur = array_nextsize (elem, *cur, cnt);
1963 return ev_realloc (base, elem * *cur); 1991 return ev_realloc (base, elem * *cur);
1964} 1992}
1965 1993
1994#define array_needsize_noinit(base,count)
1995
1966#define array_init_zero(base,count) \ 1996#define array_needsize_zerofill(base,count) \
1967 memset ((void *)(base), 0, sizeof (*(base)) * (count)) 1997 memset ((void *)(base), 0, sizeof (*(base)) * (count))
1968 1998
1969#define array_needsize(type,base,cur,cnt,init) \ 1999#define array_needsize(type,base,cur,cnt,init) \
1970 if (expect_false ((cnt) > (cur))) \ 2000 if (expect_false ((cnt) > (cur))) \
1971 { \ 2001 { \
2007 if (expect_false (w_->pending)) 2037 if (expect_false (w_->pending))
2008 pendings [pri][w_->pending - 1].events |= revents; 2038 pendings [pri][w_->pending - 1].events |= revents;
2009 else 2039 else
2010 { 2040 {
2011 w_->pending = ++pendingcnt [pri]; 2041 w_->pending = ++pendingcnt [pri];
2012 array_needsize (ANPENDING, pendings [pri], pendingmax [pri], w_->pending, EMPTY2); 2042 array_needsize (ANPENDING, pendings [pri], pendingmax [pri], w_->pending, array_needsize_noinit);
2013 pendings [pri][w_->pending - 1].w = w_; 2043 pendings [pri][w_->pending - 1].w = w_;
2014 pendings [pri][w_->pending - 1].events = revents; 2044 pendings [pri][w_->pending - 1].events = revents;
2015 } 2045 }
2016 2046
2017 pendingpri = NUMPRI - 1; 2047 pendingpri = NUMPRI - 1;
2018} 2048}
2019 2049
2020inline_speed void 2050inline_speed void
2021feed_reverse (EV_P_ W w) 2051feed_reverse (EV_P_ W w)
2022{ 2052{
2023 array_needsize (W, rfeeds, rfeedmax, rfeedcnt + 1, EMPTY2); 2053 array_needsize (W, rfeeds, rfeedmax, rfeedcnt + 1, array_needsize_noinit);
2024 rfeeds [rfeedcnt++] = w; 2054 rfeeds [rfeedcnt++] = w;
2025} 2055}
2026 2056
2027inline_size void 2057inline_size void
2028feed_reverse_done (EV_P_ int revents) 2058feed_reverse_done (EV_P_ int revents)
2146 anfds [fd].reify |= flags; 2176 anfds [fd].reify |= flags;
2147 2177
2148 if (expect_true (!reify)) 2178 if (expect_true (!reify))
2149 { 2179 {
2150 ++fdchangecnt; 2180 ++fdchangecnt;
2151 array_needsize (int, fdchanges, fdchangemax, fdchangecnt, EMPTY2); 2181 array_needsize (int, fdchanges, fdchangemax, fdchangecnt, array_needsize_noinit);
2152 fdchanges [fdchangecnt - 1] = fd; 2182 fdchanges [fdchangecnt - 1] = fd;
2153 } 2183 }
2154} 2184}
2155 2185
2156/* the given fd is invalid/unusable, so make sure it doesn't hurt us anymore */ 2186/* the given fd is invalid/unusable, so make sure it doesn't hurt us anymore */
2706# include "ev_kqueue.c" 2736# include "ev_kqueue.c"
2707#endif 2737#endif
2708#if EV_USE_EPOLL 2738#if EV_USE_EPOLL
2709# include "ev_epoll.c" 2739# include "ev_epoll.c"
2710#endif 2740#endif
2741#if EV_USE_LINUXAIO
2742# include "ev_linuxaio.c"
2743#endif
2711#if EV_USE_POLL 2744#if EV_USE_POLL
2712# include "ev_poll.c" 2745# include "ev_poll.c"
2713#endif 2746#endif
2714#if EV_USE_SELECT 2747#if EV_USE_SELECT
2715# include "ev_select.c" 2748# include "ev_select.c"
2743unsigned int 2776unsigned int
2744ev_supported_backends (void) EV_NOEXCEPT 2777ev_supported_backends (void) EV_NOEXCEPT
2745{ 2778{
2746 unsigned int flags = 0; 2779 unsigned int flags = 0;
2747 2780
2748 if (EV_USE_PORT ) flags |= EVBACKEND_PORT; 2781 if (EV_USE_PORT ) flags |= EVBACKEND_PORT;
2749 if (EV_USE_KQUEUE) flags |= EVBACKEND_KQUEUE; 2782 if (EV_USE_KQUEUE ) flags |= EVBACKEND_KQUEUE;
2750 if (EV_USE_EPOLL ) flags |= EVBACKEND_EPOLL; 2783 if (EV_USE_EPOLL ) flags |= EVBACKEND_EPOLL;
2784 if (EV_USE_LINUXAIO) flags |= EVBACKEND_LINUXAIO;
2751 if (EV_USE_POLL ) flags |= EVBACKEND_POLL; 2785 if (EV_USE_POLL ) flags |= EVBACKEND_POLL;
2752 if (EV_USE_SELECT) flags |= EVBACKEND_SELECT; 2786 if (EV_USE_SELECT ) flags |= EVBACKEND_SELECT;
2753 2787
2754 return flags; 2788 return flags;
2755} 2789}
2756 2790
2757ecb_cold 2791ecb_cold
2770 flags &= ~EVBACKEND_KQUEUE; /* horribly broken, even for sockets */ 2804 flags &= ~EVBACKEND_KQUEUE; /* horribly broken, even for sockets */
2771 flags &= ~EVBACKEND_POLL; /* poll is based on kqueue from 10.5 onwards */ 2805 flags &= ~EVBACKEND_POLL; /* poll is based on kqueue from 10.5 onwards */
2772#endif 2806#endif
2773#ifdef __FreeBSD__ 2807#ifdef __FreeBSD__
2774 flags &= ~EVBACKEND_POLL; /* poll return value is unusable (http://forums.freebsd.org/archive/index.php/t-10270.html) */ 2808 flags &= ~EVBACKEND_POLL; /* poll return value is unusable (http://forums.freebsd.org/archive/index.php/t-10270.html) */
2809#endif
2810
2811 /* TODO: linuxaio is very experimental */
2812#if !EV_RECOMMEND_LINUXAIO
2813 flags &= ~EVBACKEND_LINUXAIO;
2775#endif 2814#endif
2776 2815
2777 return flags; 2816 return flags;
2778} 2817}
2779 2818
2916 2955
2917 if (!(flags & EVBACKEND_MASK)) 2956 if (!(flags & EVBACKEND_MASK))
2918 flags |= ev_recommended_backends (); 2957 flags |= ev_recommended_backends ();
2919 2958
2920#if EV_USE_IOCP 2959#if EV_USE_IOCP
2921 if (!backend && (flags & EVBACKEND_IOCP )) backend = iocp_init (EV_A_ flags); 2960 if (!backend && (flags & EVBACKEND_IOCP )) backend = iocp_init (EV_A_ flags);
2922#endif 2961#endif
2923#if EV_USE_PORT 2962#if EV_USE_PORT
2924 if (!backend && (flags & EVBACKEND_PORT )) backend = port_init (EV_A_ flags); 2963 if (!backend && (flags & EVBACKEND_PORT )) backend = port_init (EV_A_ flags);
2925#endif 2964#endif
2926#if EV_USE_KQUEUE 2965#if EV_USE_KQUEUE
2927 if (!backend && (flags & EVBACKEND_KQUEUE)) backend = kqueue_init (EV_A_ flags); 2966 if (!backend && (flags & EVBACKEND_KQUEUE )) backend = kqueue_init (EV_A_ flags);
2967#endif
2968#if EV_USE_LINUXAIO
2969 if (!backend && (flags & EVBACKEND_LINUXAIO)) backend = linuxaio_init (EV_A_ flags);
2928#endif 2970#endif
2929#if EV_USE_EPOLL 2971#if EV_USE_EPOLL
2930 if (!backend && (flags & EVBACKEND_EPOLL )) backend = epoll_init (EV_A_ flags); 2972 if (!backend && (flags & EVBACKEND_EPOLL )) backend = epoll_init (EV_A_ flags);
2931#endif 2973#endif
2932#if EV_USE_POLL 2974#if EV_USE_POLL
2933 if (!backend && (flags & EVBACKEND_POLL )) backend = poll_init (EV_A_ flags); 2975 if (!backend && (flags & EVBACKEND_POLL )) backend = poll_init (EV_A_ flags);
2934#endif 2976#endif
2935#if EV_USE_SELECT 2977#if EV_USE_SELECT
2936 if (!backend && (flags & EVBACKEND_SELECT)) backend = select_init (EV_A_ flags); 2978 if (!backend && (flags & EVBACKEND_SELECT )) backend = select_init (EV_A_ flags);
2937#endif 2979#endif
2938 2980
2939 ev_prepare_init (&pending_w, pendingcb); 2981 ev_prepare_init (&pending_w, pendingcb);
2940 2982
2941#if EV_SIGNAL_ENABLE || EV_ASYNC_ENABLE 2983#if EV_SIGNAL_ENABLE || EV_ASYNC_ENABLE
2996 3038
2997 if (backend_fd >= 0) 3039 if (backend_fd >= 0)
2998 close (backend_fd); 3040 close (backend_fd);
2999 3041
3000#if EV_USE_IOCP 3042#if EV_USE_IOCP
3001 if (backend == EVBACKEND_IOCP ) iocp_destroy (EV_A); 3043 if (backend == EVBACKEND_IOCP ) iocp_destroy (EV_A);
3002#endif 3044#endif
3003#if EV_USE_PORT 3045#if EV_USE_PORT
3004 if (backend == EVBACKEND_PORT ) port_destroy (EV_A); 3046 if (backend == EVBACKEND_PORT ) port_destroy (EV_A);
3005#endif 3047#endif
3006#if EV_USE_KQUEUE 3048#if EV_USE_KQUEUE
3007 if (backend == EVBACKEND_KQUEUE) kqueue_destroy (EV_A); 3049 if (backend == EVBACKEND_KQUEUE ) kqueue_destroy (EV_A);
3050#endif
3051#if EV_USE_LINUXAIO
3052 if (backend == EVBACKEND_LINUXAIO) linuxaio_destroy (EV_A);
3008#endif 3053#endif
3009#if EV_USE_EPOLL 3054#if EV_USE_EPOLL
3010 if (backend == EVBACKEND_EPOLL ) epoll_destroy (EV_A); 3055 if (backend == EVBACKEND_EPOLL ) epoll_destroy (EV_A);
3011#endif 3056#endif
3012#if EV_USE_POLL 3057#if EV_USE_POLL
3013 if (backend == EVBACKEND_POLL ) poll_destroy (EV_A); 3058 if (backend == EVBACKEND_POLL ) poll_destroy (EV_A);
3014#endif 3059#endif
3015#if EV_USE_SELECT 3060#if EV_USE_SELECT
3016 if (backend == EVBACKEND_SELECT) select_destroy (EV_A); 3061 if (backend == EVBACKEND_SELECT ) select_destroy (EV_A);
3017#endif 3062#endif
3018 3063
3019 for (i = NUMPRI; i--; ) 3064 for (i = NUMPRI; i--; )
3020 { 3065 {
3021 array_free (pending, [i]); 3066 array_free (pending, [i]);
3063 3108
3064inline_size void 3109inline_size void
3065loop_fork (EV_P) 3110loop_fork (EV_P)
3066{ 3111{
3067#if EV_USE_PORT 3112#if EV_USE_PORT
3068 if (backend == EVBACKEND_PORT ) port_fork (EV_A); 3113 if (backend == EVBACKEND_PORT ) port_fork (EV_A);
3069#endif 3114#endif
3070#if EV_USE_KQUEUE 3115#if EV_USE_KQUEUE
3071 if (backend == EVBACKEND_KQUEUE) kqueue_fork (EV_A); 3116 if (backend == EVBACKEND_KQUEUE ) kqueue_fork (EV_A);
3117#endif
3118#if EV_USE_LINUXAIO
3119 if (backend == EVBACKEND_LINUXAIO) linuxaio_fork (EV_A);
3072#endif 3120#endif
3073#if EV_USE_EPOLL 3121#if EV_USE_EPOLL
3074 if (backend == EVBACKEND_EPOLL ) epoll_fork (EV_A); 3122 if (backend == EVBACKEND_EPOLL ) epoll_fork (EV_A);
3075#endif 3123#endif
3076#if EV_USE_INOTIFY 3124#if EV_USE_INOTIFY
3077 infy_fork (EV_A); 3125 infy_fork (EV_A);
3078#endif 3126#endif
3079 3127
3876 assert (("libev: ev_io_start called with illegal event mask", !(w->events & ~(EV__IOFDSET | EV_READ | EV_WRITE)))); 3924 assert (("libev: ev_io_start called with illegal event mask", !(w->events & ~(EV__IOFDSET | EV_READ | EV_WRITE))));
3877 3925
3878 EV_FREQUENT_CHECK; 3926 EV_FREQUENT_CHECK;
3879 3927
3880 ev_start (EV_A_ (W)w, 1); 3928 ev_start (EV_A_ (W)w, 1);
3881 array_needsize (ANFD, anfds, anfdmax, fd + 1, array_init_zero); 3929 array_needsize (ANFD, anfds, anfdmax, fd + 1, array_needsize_zerofill);
3882 wlist_add (&anfds[fd].head, (WL)w); 3930 wlist_add (&anfds[fd].head, (WL)w);
3883 3931
3884 /* common bug, apparently */ 3932 /* common bug, apparently */
3885 assert (("libev: ev_io_start called with corrupted watcher", ((WL)w)->next != (WL)w)); 3933 assert (("libev: ev_io_start called with corrupted watcher", ((WL)w)->next != (WL)w));
3886 3934
3923 3971
3924 EV_FREQUENT_CHECK; 3972 EV_FREQUENT_CHECK;
3925 3973
3926 ++timercnt; 3974 ++timercnt;
3927 ev_start (EV_A_ (W)w, timercnt + HEAP0 - 1); 3975 ev_start (EV_A_ (W)w, timercnt + HEAP0 - 1);
3928 array_needsize (ANHE, timers, timermax, ev_active (w) + 1, EMPTY2); 3976 array_needsize (ANHE, timers, timermax, ev_active (w) + 1, array_needsize_noinit);
3929 ANHE_w (timers [ev_active (w)]) = (WT)w; 3977 ANHE_w (timers [ev_active (w)]) = (WT)w;
3930 ANHE_at_cache (timers [ev_active (w)]); 3978 ANHE_at_cache (timers [ev_active (w)]);
3931 upheap (timers, ev_active (w)); 3979 upheap (timers, ev_active (w));
3932 3980
3933 EV_FREQUENT_CHECK; 3981 EV_FREQUENT_CHECK;
4020 4068
4021 EV_FREQUENT_CHECK; 4069 EV_FREQUENT_CHECK;
4022 4070
4023 ++periodiccnt; 4071 ++periodiccnt;
4024 ev_start (EV_A_ (W)w, periodiccnt + HEAP0 - 1); 4072 ev_start (EV_A_ (W)w, periodiccnt + HEAP0 - 1);
4025 array_needsize (ANHE, periodics, periodicmax, ev_active (w) + 1, EMPTY2); 4073 array_needsize (ANHE, periodics, periodicmax, ev_active (w) + 1, array_needsize_noinit);
4026 ANHE_w (periodics [ev_active (w)]) = (WT)w; 4074 ANHE_w (periodics [ev_active (w)]) = (WT)w;
4027 ANHE_at_cache (periodics [ev_active (w)]); 4075 ANHE_at_cache (periodics [ev_active (w)]);
4028 upheap (periodics, ev_active (w)); 4076 upheap (periodics, ev_active (w));
4029 4077
4030 EV_FREQUENT_CHECK; 4078 EV_FREQUENT_CHECK;
4615 int active = ++idlecnt [ABSPRI (w)]; 4663 int active = ++idlecnt [ABSPRI (w)];
4616 4664
4617 ++idleall; 4665 ++idleall;
4618 ev_start (EV_A_ (W)w, active); 4666 ev_start (EV_A_ (W)w, active);
4619 4667
4620 array_needsize (ev_idle *, idles [ABSPRI (w)], idlemax [ABSPRI (w)], active, EMPTY2); 4668 array_needsize (ev_idle *, idles [ABSPRI (w)], idlemax [ABSPRI (w)], active, array_needsize_noinit);
4621 idles [ABSPRI (w)][active - 1] = w; 4669 idles [ABSPRI (w)][active - 1] = w;
4622 } 4670 }
4623 4671
4624 EV_FREQUENT_CHECK; 4672 EV_FREQUENT_CHECK;
4625} 4673}
4655 return; 4703 return;
4656 4704
4657 EV_FREQUENT_CHECK; 4705 EV_FREQUENT_CHECK;
4658 4706
4659 ev_start (EV_A_ (W)w, ++preparecnt); 4707 ev_start (EV_A_ (W)w, ++preparecnt);
4660 array_needsize (ev_prepare *, prepares, preparemax, preparecnt, EMPTY2); 4708 array_needsize (ev_prepare *, prepares, preparemax, preparecnt, array_needsize_noinit);
4661 prepares [preparecnt - 1] = w; 4709 prepares [preparecnt - 1] = w;
4662 4710
4663 EV_FREQUENT_CHECK; 4711 EV_FREQUENT_CHECK;
4664} 4712}
4665 4713
4693 return; 4741 return;
4694 4742
4695 EV_FREQUENT_CHECK; 4743 EV_FREQUENT_CHECK;
4696 4744
4697 ev_start (EV_A_ (W)w, ++checkcnt); 4745 ev_start (EV_A_ (W)w, ++checkcnt);
4698 array_needsize (ev_check *, checks, checkmax, checkcnt, EMPTY2); 4746 array_needsize (ev_check *, checks, checkmax, checkcnt, array_needsize_noinit);
4699 checks [checkcnt - 1] = w; 4747 checks [checkcnt - 1] = w;
4700 4748
4701 EV_FREQUENT_CHECK; 4749 EV_FREQUENT_CHECK;
4702} 4750}
4703 4751
4841 return; 4889 return;
4842 4890
4843 EV_FREQUENT_CHECK; 4891 EV_FREQUENT_CHECK;
4844 4892
4845 ev_start (EV_A_ (W)w, ++forkcnt); 4893 ev_start (EV_A_ (W)w, ++forkcnt);
4846 array_needsize (ev_fork *, forks, forkmax, forkcnt, EMPTY2); 4894 array_needsize (ev_fork *, forks, forkmax, forkcnt, array_needsize_noinit);
4847 forks [forkcnt - 1] = w; 4895 forks [forkcnt - 1] = w;
4848 4896
4849 EV_FREQUENT_CHECK; 4897 EV_FREQUENT_CHECK;
4850} 4898}
4851 4899
4879 return; 4927 return;
4880 4928
4881 EV_FREQUENT_CHECK; 4929 EV_FREQUENT_CHECK;
4882 4930
4883 ev_start (EV_A_ (W)w, ++cleanupcnt); 4931 ev_start (EV_A_ (W)w, ++cleanupcnt);
4884 array_needsize (ev_cleanup *, cleanups, cleanupmax, cleanupcnt, EMPTY2); 4932 array_needsize (ev_cleanup *, cleanups, cleanupmax, cleanupcnt, array_needsize_noinit);
4885 cleanups [cleanupcnt - 1] = w; 4933 cleanups [cleanupcnt - 1] = w;
4886 4934
4887 /* cleanup watchers should never keep a refcount on the loop */ 4935 /* cleanup watchers should never keep a refcount on the loop */
4888 ev_unref (EV_A); 4936 ev_unref (EV_A);
4889 EV_FREQUENT_CHECK; 4937 EV_FREQUENT_CHECK;
4924 evpipe_init (EV_A); 4972 evpipe_init (EV_A);
4925 4973
4926 EV_FREQUENT_CHECK; 4974 EV_FREQUENT_CHECK;
4927 4975
4928 ev_start (EV_A_ (W)w, ++asynccnt); 4976 ev_start (EV_A_ (W)w, ++asynccnt);
4929 array_needsize (ev_async *, asyncs, asyncmax, asynccnt, EMPTY2); 4977 array_needsize (ev_async *, asyncs, asyncmax, asynccnt, array_needsize_noinit);
4930 asyncs [asynccnt - 1] = w; 4978 asyncs [asynccnt - 1] = w;
4931 4979
4932 EV_FREQUENT_CHECK; 4980 EV_FREQUENT_CHECK;
4933} 4981}
4934 4982
5002 5050
5003void 5051void
5004ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg) EV_NOEXCEPT 5052ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg) EV_NOEXCEPT
5005{ 5053{
5006 struct ev_once *once = (struct ev_once *)ev_malloc (sizeof (struct ev_once)); 5054 struct ev_once *once = (struct ev_once *)ev_malloc (sizeof (struct ev_once));
5007
5008 if (expect_false (!once))
5009 {
5010 cb (EV_ERROR | EV_READ | EV_WRITE | EV_TIMER, arg);
5011 return;
5012 }
5013 5055
5014 once->cb = cb; 5056 once->cb = cb;
5015 once->arg = arg; 5057 once->arg = arg;
5016 5058
5017 ev_init (&once->io, once_cb_io); 5059 ev_init (&once->io, once_cb_io);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines