libev/ev.c

1633 lines
34 KiB
C
Raw Normal View History

2007-10-31 14:44:14 +00:00
/*
2007-11-01 13:11:11 +00:00
* libev event processing core, watcher management
*
2007-10-31 14:44:14 +00:00
* Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
2007-11-10 03:36:15 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2007-11-04 18:15:16 +00:00
#ifndef EV_STANDALONE
# include "config.h"
2007-11-04 18:29:44 +00:00
# if HAVE_CLOCK_GETTIME
# ifndef EV_USE_MONOTONIC
# define EV_USE_MONOTONIC 1
# endif
# ifndef EV_USE_REALTIME
# define EV_USE_REALTIME 1
# endif
2007-11-04 18:29:44 +00:00
# endif
# if HAVE_SELECT && HAVE_SYS_SELECT_H && !defined (EV_USE_SELECT)
2007-11-04 18:29:44 +00:00
# define EV_USE_SELECT 1
# endif
# if HAVE_POLL && HAVE_POLL_H && !defined (EV_USE_POLL)
2007-11-04 18:29:44 +00:00
# define EV_USE_POLL 1
# endif
2007-11-11 17:56:11 +00:00
# if HAVE_EPOLL_CTL && HAVE_SYS_EPOLL_H && !defined (EV_USE_EPOLL)
2007-11-04 18:29:44 +00:00
# define EV_USE_EPOLL 1
# endif
# if HAVE_KQUEUE && HAVE_SYS_EVENT_H && HAVE_SYS_QUEUE_H && !defined (EV_USE_KQUEUE)
2007-11-04 18:29:44 +00:00
# define EV_USE_KQUEUE 1
# endif
#endif
2007-10-31 14:44:14 +00:00
#include <math.h>
#include <stdlib.h>
2007-10-31 00:24:16 +00:00
#include <fcntl.h>
2007-10-31 13:57:34 +00:00
#include <stddef.h>
#include <stdio.h>
2007-10-30 23:10:33 +00:00
#include <assert.h>
#include <errno.h>
2007-10-31 19:07:43 +00:00
#include <sys/types.h>
#include <time.h>
2007-11-06 16:09:37 +00:00
#include <signal.h>
2007-11-03 09:19:58 +00:00
#ifndef WIN32
# include <unistd.h>
# include <sys/time.h>
2007-11-03 09:19:58 +00:00
# include <sys/wait.h>
#endif
2007-11-02 11:02:23 +00:00
/**/
#ifndef EV_USE_MONOTONIC
2007-11-01 13:33:12 +00:00
# define EV_USE_MONOTONIC 1
#endif
#ifndef EV_USE_SELECT
# define EV_USE_SELECT 1
#endif
2007-11-04 18:15:16 +00:00
#ifndef EV_USE_POLL
# define EV_USE_POLL 0 /* poll is usually slower than select, and not as well tested */
#endif
#ifndef EV_USE_EPOLL
# define EV_USE_EPOLL 0
#endif
#ifndef EV_USE_KQUEUE
# define EV_USE_KQUEUE 0
#endif
#ifndef EV_USE_WIN32
# ifdef WIN32
# define EV_USE_WIN32 0 /* it does not exist, use select */
# undef EV_USE_SELECT
# define EV_USE_SELECT 1
# else
# define EV_USE_WIN32 0
# endif
#endif
2007-11-02 11:02:23 +00:00
#ifndef EV_USE_REALTIME
# define EV_USE_REALTIME 1
#endif
/**/
#ifndef CLOCK_MONOTONIC
# undef EV_USE_MONOTONIC
# define EV_USE_MONOTONIC 0
#endif
2007-11-01 09:05:33 +00:00
#ifndef CLOCK_REALTIME
2007-11-02 11:02:23 +00:00
# undef EV_USE_REALTIME
2007-11-01 09:05:33 +00:00
# define EV_USE_REALTIME 0
#endif
2007-11-02 11:02:23 +00:00
/**/
2007-10-30 23:10:33 +00:00
#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
2007-11-02 11:02:23 +00:00
#define MAX_BLOCKTIME 59.731 /* never wait longer than this time (to detect time jumps) */
2007-11-01 09:05:33 +00:00
#define PID_HASHSIZE 16 /* size of pid hash table, must be power of two */
2007-11-02 11:02:23 +00:00
/*#define CLEANUP_INTERVAL 300. /* how often to try to free memory and re-check fds */
#ifdef EV_H
# include EV_H
#else
# include "ev.h"
#endif
2007-11-02 11:02:23 +00:00
#if __GNUC__ >= 3
# define expect(expr,value) __builtin_expect ((expr),(value))
# define inline inline
#else
# define expect(expr,value) (expr)
# define inline static
#endif
#define expect_false(expr) expect ((expr) != 0, 0)
#define expect_true(expr) expect ((expr) != 0, 1)
2007-11-02 20:05:05 +00:00
#define NUMPRI (EV_MAXPRI - EV_MINPRI + 1)
#define ABSPRI(w) ((w)->priority - EV_MINPRI)
typedef struct ev_watcher *W;
typedef struct ev_watcher_list *WL;
2007-10-31 09:23:17 +00:00
typedef struct ev_watcher_time *WT;
2007-11-04 00:24:16 +00:00
static int have_monotonic; /* did clock_gettime (CLOCK_MONOTONIC) work? */
2007-11-11 02:05:20 +00:00
#ifdef WIN32
# include "ev_win32.c"
#endif
2007-11-05 16:42:15 +00:00
2007-11-03 22:31:11 +00:00
/*****************************************************************************/
2007-11-03 21:58:51 +00:00
2007-11-06 00:52:32 +00:00
static void (*syserr_cb)(const char *msg);
2007-11-06 00:10:04 +00:00
2007-11-06 00:52:32 +00:00
void ev_set_syserr_cb (void (*cb)(const char *msg))
2007-11-06 00:10:04 +00:00
{
syserr_cb = cb;
}
static void
2007-11-06 00:52:32 +00:00
syserr (const char *msg)
2007-11-06 00:10:04 +00:00
{
2007-11-06 00:52:32 +00:00
if (!msg)
msg = "(libev) system error";
2007-11-06 00:10:04 +00:00
if (syserr_cb)
2007-11-06 00:52:32 +00:00
syserr_cb (msg);
2007-11-06 00:10:04 +00:00
else
{
2007-11-06 00:52:32 +00:00
perror (msg);
2007-11-06 00:10:04 +00:00
abort ();
}
}
static void *(*alloc)(void *ptr, long size);
void ev_set_allocator (void *(*cb)(void *ptr, long size))
{
alloc = cb;
}
static void *
ev_realloc (void *ptr, long size)
{
ptr = alloc ? alloc (ptr, size) : realloc (ptr, size);
if (!ptr && size)
{
fprintf (stderr, "libev: cannot allocate %ld bytes, aborting.", size);
abort ();
}
return ptr;
}
#define ev_malloc(size) ev_realloc (0, (size))
#define ev_free(ptr) ev_realloc ((ptr), 0)
/*****************************************************************************/
2007-11-03 22:31:11 +00:00
typedef struct
{
2007-11-05 20:19:00 +00:00
WL head;
2007-11-03 22:31:11 +00:00
unsigned char events;
unsigned char reify;
} ANFD;
2007-11-03 21:58:51 +00:00
2007-11-03 22:31:11 +00:00
typedef struct
{
W w;
int events;
} ANPENDING;
2007-11-03 21:58:51 +00:00
#if EV_MULTIPLICITY
2007-11-04 00:24:16 +00:00
2007-11-09 15:30:59 +00:00
struct ev_loop
{
2007-11-10 03:19:21 +00:00
ev_tstamp ev_rt_now;
#define ev_rt_now ((loop)->ev_rt_now)
2007-11-09 15:30:59 +00:00
#define VAR(name,decl) decl;
#include "ev_vars.h"
#undef VAR
};
#include "ev_wrap.h"
struct ev_loop default_loop_struct;
static struct ev_loop *default_loop;
2007-11-04 00:24:16 +00:00
2007-11-03 22:31:11 +00:00
#else
2007-11-04 00:24:16 +00:00
2007-11-10 03:19:21 +00:00
ev_tstamp ev_rt_now;
2007-11-09 15:30:59 +00:00
#define VAR(name,decl) static decl;
#include "ev_vars.h"
#undef VAR
static int default_loop;
2007-11-04 00:24:16 +00:00
2007-11-03 21:58:51 +00:00
#endif
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
2007-11-11 00:08:54 +00:00
ev_tstamp
ev_time (void)
{
#if EV_USE_REALTIME
struct timespec ts;
clock_gettime (CLOCK_REALTIME, &ts);
return ts.tv_sec + ts.tv_nsec * 1e-9;
#else
struct timeval tv;
gettimeofday (&tv, 0);
return tv.tv_sec + tv.tv_usec * 1e-6;
#endif
}
2007-11-03 21:58:51 +00:00
inline ev_tstamp
get_clock (void)
{
#if EV_USE_MONOTONIC
2007-11-02 11:02:23 +00:00
if (expect_true (have_monotonic))
{
struct timespec ts;
clock_gettime (CLOCK_MONOTONIC, &ts);
return ts.tv_sec + ts.tv_nsec * 1e-9;
}
#endif
return ev_time ();
}
2007-11-10 03:13:50 +00:00
#if EV_MULTIPLICITY
2007-11-03 21:58:51 +00:00
ev_tstamp
ev_now (EV_P)
{
2007-11-10 03:13:50 +00:00
return ev_rt_now;
2007-11-03 21:58:51 +00:00
}
2007-11-10 03:13:50 +00:00
#endif
2007-11-03 21:58:51 +00:00
2007-11-06 16:51:20 +00:00
#define array_roundsize(type,n) ((n) | 4 & ~3)
2007-11-06 16:51:20 +00:00
#define array_needsize(type,base,cur,cnt,init) \
2007-11-06 00:10:04 +00:00
if (expect_false ((cnt) > cur)) \
{ \
int newcnt = cur; \
do \
{ \
2007-11-06 16:51:20 +00:00
newcnt = array_roundsize (type, newcnt << 1); \
2007-11-06 00:10:04 +00:00
} \
while ((cnt) > newcnt); \
\
2007-11-06 16:51:20 +00:00
base = (type *)ev_realloc (base, sizeof (type) * (newcnt));\
2007-11-06 00:10:04 +00:00
init (base + cur, newcnt - cur); \
cur = newcnt; \
}
2007-11-06 16:51:20 +00:00
#define array_slim(type,stem) \
2007-11-05 16:42:15 +00:00
if (stem ## max < array_roundsize (stem ## cnt >> 2)) \
{ \
stem ## max = array_roundsize (stem ## cnt >> 1); \
2007-11-06 16:51:20 +00:00
base = (type *)ev_realloc (base, sizeof (type) * (stem ## max));\
2007-11-05 16:42:15 +00:00
fprintf (stderr, "slimmed down " # stem " to %d\n", stem ## max);/*D*/\
}
/* microsoft's pseudo-c is quite far from C as the rest of the world and the standard knows it */
/* bringing us everlasting joy in form of stupid extra macros that are not required in C */
#define array_free_microshit(stem) \
ev_free (stem ## s); stem ## cnt = stem ## max = 0;
2007-11-04 23:29:48 +00:00
#define array_free(stem, idx) \
2007-11-06 00:10:04 +00:00
ev_free (stem ## s idx); stem ## cnt idx = stem ## max idx = 0;
2007-11-04 23:29:48 +00:00
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
static void
anfds_init (ANFD *base, int count)
{
while (count--)
{
2007-10-31 22:16:36 +00:00
base->head = 0;
base->events = EV_NONE;
2007-11-01 11:11:22 +00:00
base->reify = 0;
++base;
}
}
2007-11-08 21:08:56 +00:00
void
ev_feed_event (EV_P_ void *w, int revents)
{
2007-11-08 21:08:56 +00:00
W w_ = (W)w;
if (w_->pending)
2007-11-01 09:21:51 +00:00
{
2007-11-08 21:08:56 +00:00
pendings [ABSPRI (w_)][w_->pending - 1].events |= revents;
2007-11-01 09:21:51 +00:00
return;
}
2007-11-08 21:08:56 +00:00
w_->pending = ++pendingcnt [ABSPRI (w_)];
array_needsize (ANPENDING, pendings [ABSPRI (w_)], pendingmax [ABSPRI (w_)], pendingcnt [ABSPRI (w_)], (void));
pendings [ABSPRI (w_)][w_->pending - 1].w = w_;
pendings [ABSPRI (w_)][w_->pending - 1].events = revents;
}
2007-10-31 22:16:36 +00:00
static void
2007-11-03 21:58:51 +00:00
queue_events (EV_P_ W *events, int eventcnt, int type)
2007-10-31 22:16:36 +00:00
{
int i;
for (i = 0; i < eventcnt; ++i)
2007-11-08 21:08:56 +00:00
ev_feed_event (EV_A_ events [i], type);
2007-10-31 22:16:36 +00:00
}
2007-11-09 15:15:20 +00:00
inline void
fd_event (EV_P_ int fd, int revents)
{
ANFD *anfd = anfds + fd;
struct ev_io *w;
for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next)
{
2007-11-09 15:15:20 +00:00
int ev = w->events & revents;
if (ev)
2007-11-08 21:08:56 +00:00
ev_feed_event (EV_A_ (W)w, ev);
}
}
2007-11-09 15:15:20 +00:00
void
ev_feed_fd_event (EV_P_ int fd, int revents)
{
fd_event (EV_A_ fd, revents);
}
2007-10-31 22:16:36 +00:00
/*****************************************************************************/
static void
2007-11-03 21:58:51 +00:00
fd_reify (EV_P)
{
int i;
2007-10-31 22:16:36 +00:00
for (i = 0; i < fdchangecnt; ++i)
{
int fd = fdchanges [i];
ANFD *anfd = anfds + fd;
struct ev_io *w;
int events = 0;
for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next)
2007-10-31 22:16:36 +00:00
events |= w->events;
2007-11-01 11:11:22 +00:00
anfd->reify = 0;
2007-10-31 22:16:36 +00:00
method_modify (EV_A_ fd, anfd->events, events);
anfd->events = events;
2007-10-31 22:16:36 +00:00
}
fdchangecnt = 0;
}
static void
2007-11-03 21:58:51 +00:00
fd_change (EV_P_ int fd)
2007-10-31 22:16:36 +00:00
{
2007-11-06 00:52:32 +00:00
if (anfds [fd].reify)
2007-10-31 22:16:36 +00:00
return;
2007-11-01 11:11:22 +00:00
anfds [fd].reify = 1;
2007-10-31 22:16:36 +00:00
++fdchangecnt;
2007-11-06 16:51:20 +00:00
array_needsize (int, fdchanges, fdchangemax, fdchangecnt, (void));
2007-10-31 22:16:36 +00:00
fdchanges [fdchangecnt - 1] = fd;
}
static void
2007-11-03 21:58:51 +00:00
fd_kill (EV_P_ int fd)
{
struct ev_io *w;
while ((w = (struct ev_io *)anfds [fd].head))
{
2007-11-03 21:58:51 +00:00
ev_io_stop (EV_A_ w);
2007-11-08 21:08:56 +00:00
ev_feed_event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE);
}
}
static int
fd_valid (int fd)
{
#ifdef WIN32
return !!win32_get_osfhandle (fd);
#else
return fcntl (fd, F_GETFD) != -1;
#endif
}
2007-10-31 17:55:55 +00:00
/* called on EBADF to verify fds */
static void
2007-11-03 21:58:51 +00:00
fd_ebadf (EV_P)
2007-10-31 17:55:55 +00:00
{
int fd;
for (fd = 0; fd < anfdmax; ++fd)
2007-10-31 22:16:36 +00:00
if (anfds [fd].events)
if (!fd_valid (fd) == -1 && errno == EBADF)
2007-11-03 21:58:51 +00:00
fd_kill (EV_A_ fd);
}
/* called on ENOMEM in select/poll to kill some fds and retry */
static void
2007-11-03 21:58:51 +00:00
fd_enomem (EV_P)
{
int fd;
for (fd = anfdmax; fd--; )
if (anfds [fd].events)
{
2007-11-03 21:58:51 +00:00
fd_kill (EV_A_ fd);
return;
}
2007-10-31 17:55:55 +00:00
}
2007-11-06 00:52:32 +00:00
/* usually called after fork if method needs to re-arm all fds from scratch */
static void
fd_rearm_all (EV_P)
{
int fd;
/* this should be highly optimised to not do anything but set a flag */
for (fd = 0; fd < anfdmax; ++fd)
if (anfds [fd].events)
{
anfds [fd].events = 0;
2007-11-04 18:29:44 +00:00
fd_change (EV_A_ fd);
}
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
static void
2007-11-04 00:24:16 +00:00
upheap (WT *heap, int k)
{
2007-11-04 00:24:16 +00:00
WT w = heap [k];
2007-11-04 00:24:16 +00:00
while (k && heap [k >> 1]->at > w->at)
{
2007-11-04 00:24:16 +00:00
heap [k] = heap [k >> 1];
((W)heap [k])->active = k + 1;
k >>= 1;
}
2007-11-04 00:24:16 +00:00
heap [k] = w;
((W)heap [k])->active = k + 1;
}
static void
2007-11-04 00:24:16 +00:00
downheap (WT *heap, int N, int k)
{
2007-11-04 00:24:16 +00:00
WT w = heap [k];
2007-10-30 23:10:33 +00:00
while (k < (N >> 1))
{
int j = k << 1;
2007-11-04 00:24:16 +00:00
if (j + 1 < N && heap [j]->at > heap [j + 1]->at)
++j;
2007-11-04 00:24:16 +00:00
if (w->at <= heap [j]->at)
break;
2007-11-04 00:24:16 +00:00
heap [k] = heap [j];
((W)heap [k])->active = k + 1;
k = j;
}
2007-11-04 00:24:16 +00:00
heap [k] = w;
((W)heap [k])->active = k + 1;
}
2007-11-09 23:04:35 +00:00
inline void
adjustheap (WT *heap, int N, int k)
2007-11-09 23:04:35 +00:00
{
upheap (heap, k);
downheap (heap, N, k);
2007-11-09 23:04:35 +00:00
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
2007-10-31 00:24:16 +00:00
typedef struct
{
2007-11-05 20:19:00 +00:00
WL head;
2007-11-01 11:43:11 +00:00
sig_atomic_t volatile gotsig;
2007-10-31 00:24:16 +00:00
} ANSIG;
static ANSIG *signals;
2007-10-30 23:10:33 +00:00
static int signalmax;
2007-10-31 00:24:16 +00:00
static int sigpipe [2];
2007-11-01 11:43:11 +00:00
static sig_atomic_t volatile gotsig;
2007-11-04 18:15:16 +00:00
static struct ev_io sigev;
2007-10-31 00:24:16 +00:00
static void
2007-10-31 00:24:16 +00:00
signals_init (ANSIG *base, int count)
{
while (count--)
2007-10-31 00:24:16 +00:00
{
base->head = 0;
base->gotsig = 0;
2007-11-01 11:11:22 +00:00
2007-10-31 00:24:16 +00:00
++base;
}
}
static void
sighandler (int signum)
{
2007-11-05 16:42:15 +00:00
#if WIN32
signal (signum, sighandler);
#endif
2007-10-31 00:24:16 +00:00
signals [signum - 1].gotsig = 1;
if (!gotsig)
{
int old_errno = errno;
2007-10-31 00:24:16 +00:00
gotsig = 1;
2007-11-06 19:29:20 +00:00
#ifdef WIN32
send (sigpipe [1], &signum, 1, MSG_DONTWAIT);
#else
2007-11-01 11:43:11 +00:00
write (sigpipe [1], &signum, 1);
2007-11-06 19:29:20 +00:00
#endif
errno = old_errno;
2007-10-31 00:24:16 +00:00
}
}
2007-11-09 15:15:20 +00:00
void
ev_feed_signal_event (EV_P_ int signum)
{
2007-11-09 15:30:59 +00:00
WL w;
2007-11-09 15:15:20 +00:00
#if EV_MULTIPLICITY
assert (("feeding signal events is only supported in the default loop", loop == default_loop));
#endif
--signum;
if (signum < 0 || signum >= signalmax)
return;
signals [signum].gotsig = 0;
for (w = signals [signum].head; w; w = w->next)
ev_feed_event (EV_A_ (W)w, EV_SIGNAL);
}
2007-10-31 00:24:16 +00:00
static void
2007-11-03 21:58:51 +00:00
sigcb (EV_P_ struct ev_io *iow, int revents)
2007-10-31 00:24:16 +00:00
{
2007-11-01 15:21:13 +00:00
int signum;
2007-10-31 00:24:16 +00:00
2007-11-06 19:29:20 +00:00
#ifdef WIN32
recv (sigpipe [0], &revents, 1, MSG_DONTWAIT);
#else
2007-10-31 00:24:16 +00:00
read (sigpipe [0], &revents, 1);
2007-11-06 19:29:20 +00:00
#endif
2007-11-01 11:43:11 +00:00
gotsig = 0;
2007-10-31 00:24:16 +00:00
2007-11-01 15:21:13 +00:00
for (signum = signalmax; signum--; )
if (signals [signum].gotsig)
2007-11-09 15:30:59 +00:00
ev_feed_signal_event (EV_A_ signum + 1);
2007-10-31 00:24:16 +00:00
}
static void
2007-11-03 21:58:51 +00:00
siginit (EV_P)
2007-10-31 00:24:16 +00:00
{
2007-11-03 09:19:58 +00:00
#ifndef WIN32
2007-10-31 00:24:16 +00:00
fcntl (sigpipe [0], F_SETFD, FD_CLOEXEC);
fcntl (sigpipe [1], F_SETFD, FD_CLOEXEC);
/* rather than sort out wether we really need nb, set it */
fcntl (sigpipe [0], F_SETFL, O_NONBLOCK);
fcntl (sigpipe [1], F_SETFL, O_NONBLOCK);
2007-11-03 09:19:58 +00:00
#endif
2007-10-31 00:24:16 +00:00
2007-11-01 06:48:49 +00:00
ev_io_set (&sigev, sigpipe [0], EV_READ);
2007-11-04 00:24:16 +00:00
ev_io_start (EV_A_ &sigev);
2007-11-03 22:10:39 +00:00
ev_unref (EV_A); /* child watcher should not keep loop alive */
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
static struct ev_child *childs [PID_HASHSIZE];
2007-11-03 09:19:58 +00:00
#ifndef WIN32
2007-11-04 18:15:16 +00:00
static struct ev_signal childev;
2007-10-31 19:07:43 +00:00
#ifndef WCONTINUED
# define WCONTINUED 0
#endif
static void
2007-11-03 21:58:51 +00:00
child_reap (EV_P_ struct ev_signal *sw, int chain, int pid, int status)
2007-10-31 19:07:43 +00:00
{
struct ev_child *w;
2007-11-03 11:44:44 +00:00
for (w = (struct ev_child *)childs [chain & (PID_HASHSIZE - 1)]; w; w = (struct ev_child *)((WL)w)->next)
2007-11-03 11:44:44 +00:00
if (w->pid == pid || !w->pid)
{
2007-11-04 22:03:17 +00:00
ev_priority (w) = ev_priority (sw); /* need to do it *now* */
w->rpid = pid;
w->rstatus = status;
2007-11-08 21:08:56 +00:00
ev_feed_event (EV_A_ (W)w, EV_CHILD);
2007-11-03 11:44:44 +00:00
}
}
static void
2007-11-03 21:58:51 +00:00
childcb (EV_P_ struct ev_signal *sw, int revents)
2007-11-03 11:44:44 +00:00
{
2007-10-31 19:07:43 +00:00
int pid, status;
2007-11-03 11:44:44 +00:00
if (0 < (pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED)))
{
/* make sure we are called again until all childs have been reaped */
2007-11-08 21:08:56 +00:00
ev_feed_event (EV_A_ (W)sw, EV_SIGNAL);
2007-11-03 11:44:44 +00:00
2007-11-03 21:58:51 +00:00
child_reap (EV_A_ sw, pid, pid, status);
child_reap (EV_A_ sw, 0, pid, status); /* this might trigger a watcher twice, but event catches that */
2007-11-03 11:44:44 +00:00
}
2007-10-31 19:07:43 +00:00
}
2007-11-03 09:19:58 +00:00
#endif
2007-10-31 19:07:43 +00:00
/*****************************************************************************/
#if EV_USE_KQUEUE
# include "ev_kqueue.c"
#endif
#if EV_USE_EPOLL
# include "ev_epoll.c"
#endif
2007-11-04 18:15:16 +00:00
#if EV_USE_POLL
# include "ev_poll.c"
#endif
#if EV_USE_SELECT
# include "ev_select.c"
#endif
2007-10-31 20:46:44 +00:00
int
ev_version_major (void)
{
return EV_VERSION_MAJOR;
}
int
ev_version_minor (void)
{
return EV_VERSION_MINOR;
}
2007-11-03 16:16:58 +00:00
/* return true if we are running with elevated privileges and should ignore env variables */
static int
2007-11-03 21:58:51 +00:00
enable_secure (void)
{
2007-11-03 16:16:58 +00:00
#ifdef WIN32
return 0;
#else
return getuid () != geteuid ()
|| getgid () != getegid ();
2007-11-03 16:16:58 +00:00