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

Comparing libev/ev.c (file contents):
Revision 1.64 by root, Sun Nov 4 23:14:11 2007 UTC vs.
Revision 1.71 by root, Tue Nov 6 13:17:55 2007 UTC

54 54
55#endif 55#endif
56 56
57#include <math.h> 57#include <math.h>
58#include <stdlib.h> 58#include <stdlib.h>
59#include <unistd.h>
60#include <fcntl.h> 59#include <fcntl.h>
61#include <signal.h>
62#include <stddef.h> 60#include <stddef.h>
63 61
64#include <stdio.h> 62#include <stdio.h>
65 63
66#include <assert.h> 64#include <assert.h>
67#include <errno.h> 65#include <errno.h>
68#include <sys/types.h> 66#include <sys/types.h>
67#include <time.h>
68
69#ifndef PERL
70# include <signal.h>
71#endif
72
69#ifndef WIN32 73#ifndef WIN32
74# include <unistd.h>
75# include <sys/time.h>
70# include <sys/wait.h> 76# include <sys/wait.h>
71#endif 77#endif
72#include <sys/time.h>
73#include <time.h>
74
75/**/ 78/**/
76 79
77#ifndef EV_USE_MONOTONIC 80#ifndef EV_USE_MONOTONIC
78# define EV_USE_MONOTONIC 1 81# define EV_USE_MONOTONIC 1
79#endif 82#endif
94# define EV_USE_KQUEUE 0 97# define EV_USE_KQUEUE 0
95#endif 98#endif
96 99
97#ifndef EV_USE_WIN32 100#ifndef EV_USE_WIN32
98# ifdef WIN32 101# ifdef WIN32
102# define EV_USE_WIN32 0 /* it does not exist, use select */
103# undef EV_USE_SELECT
99# define EV_USE_WIN32 1 104# define EV_USE_SELECT 1
100# else 105# else
101# define EV_USE_WIN32 0 106# define EV_USE_WIN32 0
102# endif 107# endif
103#endif 108#endif
104 109
145typedef struct ev_watcher_list *WL; 150typedef struct ev_watcher_list *WL;
146typedef struct ev_watcher_time *WT; 151typedef struct ev_watcher_time *WT;
147 152
148static int have_monotonic; /* did clock_gettime (CLOCK_MONOTONIC) work? */ 153static int have_monotonic; /* did clock_gettime (CLOCK_MONOTONIC) work? */
149 154
155#if WIN32
156/* note: the comment below could not be substantiated, but what would I care */
157/* MSDN says this is required to handle SIGFPE */
158volatile double SIGFPE_REQ = 0.0f;
159#endif
160
150/*****************************************************************************/ 161/*****************************************************************************/
151 162
163static void (*syserr_cb)(const char *msg);
164
165void ev_set_syserr_cb (void (*cb)(const char *msg))
166{
167 syserr_cb = cb;
168}
169
170static void
171syserr (const char *msg)
172{
173 if (!msg)
174 msg = "(libev) system error";
175
176 if (syserr_cb)
177 syserr_cb (msg);
178 else
179 {
180 perror (msg);
181 abort ();
182 }
183}
184
185static void *(*alloc)(void *ptr, long size);
186
187void ev_set_allocator (void *(*cb)(void *ptr, long size))
188{
189 alloc = cb;
190}
191
192static void *
193ev_realloc (void *ptr, long size)
194{
195 ptr = alloc ? alloc (ptr, size) : realloc (ptr, size);
196
197 if (!ptr && size)
198 {
199 fprintf (stderr, "libev: cannot allocate %ld bytes, aborting.", size);
200 abort ();
201 }
202
203 return ptr;
204}
205
206#define ev_malloc(size) ev_realloc (0, (size))
207#define ev_free(ptr) ev_realloc ((ptr), 0)
208
209/*****************************************************************************/
210
152typedef struct 211typedef struct
153{ 212{
154 struct ev_watcher_list *head; 213 WL head;
155 unsigned char events; 214 unsigned char events;
156 unsigned char reify; 215 unsigned char reify;
157} ANFD; 216} ANFD;
158 217
159typedef struct 218typedef struct
217 return rt_now; 276 return rt_now;
218} 277}
219 278
220#define array_roundsize(base,n) ((n) | 4 & ~3) 279#define array_roundsize(base,n) ((n) | 4 & ~3)
221 280
222#define array_needsize(base,cur,cnt,init) \ 281#define array_needsize(base,cur,cnt,init) \
223 if (expect_false ((cnt) > cur)) \ 282 if (expect_false ((cnt) > cur)) \
224 { \ 283 { \
225 int newcnt = cur; \ 284 int newcnt = cur; \
226 do \ 285 do \
227 { \ 286 { \
228 newcnt = array_roundsize (base, newcnt << 1); \ 287 newcnt = array_roundsize (base, newcnt << 1); \
229 } \ 288 } \
230 while ((cnt) > newcnt); \ 289 while ((cnt) > newcnt); \
231 \ 290 \
232 base = realloc (base, sizeof (*base) * (newcnt)); \ 291 base = ev_realloc (base, sizeof (*base) * (newcnt)); \
233 init (base + cur, newcnt - cur); \ 292 init (base + cur, newcnt - cur); \
234 cur = newcnt; \ 293 cur = newcnt; \
235 } 294 }
295
296#define array_slim(stem) \
297 if (stem ## max < array_roundsize (stem ## cnt >> 2)) \
298 { \
299 stem ## max = array_roundsize (stem ## cnt >> 1); \
300 base = ev_realloc (base, sizeof (*base) * (stem ## max)); \
301 fprintf (stderr, "slimmed down " # stem " to %d\n", stem ## max);/*D*/\
302 }
303
304/* microsoft's pseudo-c is quite far from C as the rest of the world and the standard knows it */
305/* bringing us everlasting joy in form of stupid extra macros that are not required in C */
306#define array_free_microshit(stem) \
307 ev_free (stem ## s); stem ## cnt = stem ## max = 0;
308
309#define array_free(stem, idx) \
310 ev_free (stem ## s idx); stem ## cnt idx = stem ## max idx = 0;
236 311
237/*****************************************************************************/ 312/*****************************************************************************/
238 313
239static void 314static void
240anfds_init (ANFD *base, int count) 315anfds_init (ANFD *base, int count)
257 pendings [ABSPRI (w)][w->pending - 1].events |= events; 332 pendings [ABSPRI (w)][w->pending - 1].events |= events;
258 return; 333 return;
259 } 334 }
260 335
261 w->pending = ++pendingcnt [ABSPRI (w)]; 336 w->pending = ++pendingcnt [ABSPRI (w)];
262 array_needsize (pendings [ABSPRI (w)], pendingmax [ABSPRI (w)], pendingcnt [ABSPRI (w)], ); 337 array_needsize (pendings [ABSPRI (w)], pendingmax [ABSPRI (w)], pendingcnt [ABSPRI (w)], (void));
263 pendings [ABSPRI (w)][w->pending - 1].w = w; 338 pendings [ABSPRI (w)][w->pending - 1].w = w;
264 pendings [ABSPRI (w)][w->pending - 1].events = events; 339 pendings [ABSPRI (w)][w->pending - 1].events = events;
265} 340}
266 341
267static void 342static void
316} 391}
317 392
318static void 393static void
319fd_change (EV_P_ int fd) 394fd_change (EV_P_ int fd)
320{ 395{
321 if (anfds [fd].reify || fdchangecnt < 0) 396 if (anfds [fd].reify)
322 return; 397 return;
323 398
324 anfds [fd].reify = 1; 399 anfds [fd].reify = 1;
325 400
326 ++fdchangecnt; 401 ++fdchangecnt;
327 array_needsize (fdchanges, fdchangemax, fdchangecnt, ); 402 array_needsize (fdchanges, fdchangemax, fdchangecnt, (void));
328 fdchanges [fdchangecnt - 1] = fd; 403 fdchanges [fdchangecnt - 1] = fd;
329} 404}
330 405
331static void 406static void
332fd_kill (EV_P_ int fd) 407fd_kill (EV_P_ int fd)
338 ev_io_stop (EV_A_ w); 413 ev_io_stop (EV_A_ w);
339 event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE); 414 event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE);
340 } 415 }
341} 416}
342 417
418static int
419fd_valid (int fd)
420{
421#ifdef WIN32
422 return !!win32_get_osfhandle (fd);
423#else
424 return fcntl (fd, F_GETFD) != -1;
425#endif
426}
427
343/* called on EBADF to verify fds */ 428/* called on EBADF to verify fds */
344static void 429static void
345fd_ebadf (EV_P) 430fd_ebadf (EV_P)
346{ 431{
347 int fd; 432 int fd;
348 433
349 for (fd = 0; fd < anfdmax; ++fd) 434 for (fd = 0; fd < anfdmax; ++fd)
350 if (anfds [fd].events) 435 if (anfds [fd].events)
351 if (fcntl (fd, F_GETFD) == -1 && errno == EBADF) 436 if (!fd_valid (fd) == -1 && errno == EBADF)
352 fd_kill (EV_A_ fd); 437 fd_kill (EV_A_ fd);
353} 438}
354 439
355/* called on ENOMEM in select/poll to kill some fds and retry */ 440/* called on ENOMEM in select/poll to kill some fds and retry */
356static void 441static void
359 int fd; 444 int fd;
360 445
361 for (fd = anfdmax; fd--; ) 446 for (fd = anfdmax; fd--; )
362 if (anfds [fd].events) 447 if (anfds [fd].events)
363 { 448 {
364 close (fd);
365 fd_kill (EV_A_ fd); 449 fd_kill (EV_A_ fd);
366 return; 450 return;
367 } 451 }
368} 452}
369 453
370/* susually called after fork if method needs to re-arm all fds from scratch */ 454/* usually called after fork if method needs to re-arm all fds from scratch */
371static void 455static void
372fd_rearm_all (EV_P) 456fd_rearm_all (EV_P)
373{ 457{
374 int fd; 458 int fd;
375 459
427 511
428/*****************************************************************************/ 512/*****************************************************************************/
429 513
430typedef struct 514typedef struct
431{ 515{
432 struct ev_watcher_list *head; 516 WL head;
433 sig_atomic_t volatile gotsig; 517 sig_atomic_t volatile gotsig;
434} ANSIG; 518} ANSIG;
435 519
436static ANSIG *signals; 520static ANSIG *signals;
437static int signalmax; 521static int signalmax;
453} 537}
454 538
455static void 539static void
456sighandler (int signum) 540sighandler (int signum)
457{ 541{
542#if WIN32
543 signal (signum, sighandler);
544#endif
545
458 signals [signum - 1].gotsig = 1; 546 signals [signum - 1].gotsig = 1;
459 547
460 if (!gotsig) 548 if (!gotsig)
461 { 549 {
462 int old_errno = errno; 550 int old_errno = errno;
467} 555}
468 556
469static void 557static void
470sigcb (EV_P_ struct ev_io *iow, int revents) 558sigcb (EV_P_ struct ev_io *iow, int revents)
471{ 559{
472 struct ev_watcher_list *w; 560 WL w;
473 int signum; 561 int signum;
474 562
475 read (sigpipe [0], &revents, 1); 563 read (sigpipe [0], &revents, 1);
476 gotsig = 0; 564 gotsig = 0;
477 565
502 ev_unref (EV_A); /* child watcher should not keep loop alive */ 590 ev_unref (EV_A); /* child watcher should not keep loop alive */
503} 591}
504 592
505/*****************************************************************************/ 593/*****************************************************************************/
506 594
595static struct ev_child *childs [PID_HASHSIZE];
596
507#ifndef WIN32 597#ifndef WIN32
508 598
509static struct ev_child *childs [PID_HASHSIZE];
510static struct ev_signal childev; 599static struct ev_signal childev;
511 600
512#ifndef WCONTINUED 601#ifndef WCONTINUED
513# define WCONTINUED 0 602# define WCONTINUED 0
514#endif 603#endif
628 if (!method && (methods & EVMETHOD_POLL )) method = poll_init (EV_A_ methods); 717 if (!method && (methods & EVMETHOD_POLL )) method = poll_init (EV_A_ methods);
629#endif 718#endif
630#if EV_USE_SELECT 719#if EV_USE_SELECT
631 if (!method && (methods & EVMETHOD_SELECT)) method = select_init (EV_A_ methods); 720 if (!method && (methods & EVMETHOD_SELECT)) method = select_init (EV_A_ methods);
632#endif 721#endif
722
723 ev_watcher_init (&sigev, sigcb);
724 ev_set_priority (&sigev, EV_MAXPRI);
633 } 725 }
634} 726}
635 727
636void 728void
637loop_destroy (EV_P) 729loop_destroy (EV_P)
638{ 730{
731 int i;
732
639#if EV_USE_WIN32 733#if EV_USE_WIN32
640 if (method == EVMETHOD_WIN32 ) win32_destroy (EV_A); 734 if (method == EVMETHOD_WIN32 ) win32_destroy (EV_A);
641#endif 735#endif
642#if EV_USE_KQUEUE 736#if EV_USE_KQUEUE
643 if (method == EVMETHOD_KQUEUE) kqueue_destroy (EV_A); 737 if (method == EVMETHOD_KQUEUE) kqueue_destroy (EV_A);
650#endif 744#endif
651#if EV_USE_SELECT 745#if EV_USE_SELECT
652 if (method == EVMETHOD_SELECT) select_destroy (EV_A); 746 if (method == EVMETHOD_SELECT) select_destroy (EV_A);
653#endif 747#endif
654 748
749 for (i = NUMPRI; i--; )
750 array_free (pending, [i]);
751
752 /* have to use the microsoft-never-gets-it-right macro */
753 array_free_microshit (fdchange);
754 array_free_microshit (timer);
755 array_free_microshit (periodic);
756 array_free_microshit (idle);
757 array_free_microshit (prepare);
758 array_free_microshit (check);
759
655 method = 0; 760 method = 0;
656 /*TODO*/
657} 761}
658 762
659void 763static void
660loop_fork (EV_P) 764loop_fork (EV_P)
661{ 765{
662 /*TODO*/
663#if EV_USE_EPOLL 766#if EV_USE_EPOLL
664 if (method == EVMETHOD_EPOLL ) epoll_fork (EV_A); 767 if (method == EVMETHOD_EPOLL ) epoll_fork (EV_A);
665#endif 768#endif
666#if EV_USE_KQUEUE 769#if EV_USE_KQUEUE
667 if (method == EVMETHOD_KQUEUE) kqueue_fork (EV_A); 770 if (method == EVMETHOD_KQUEUE) kqueue_fork (EV_A);
668#endif 771#endif
772
773 if (ev_is_active (&sigev))
774 {
775 /* default loop */
776
777 ev_ref (EV_A);
778 ev_io_stop (EV_A_ &sigev);
779 close (sigpipe [0]);
780 close (sigpipe [1]);
781
782 while (pipe (sigpipe))
783 syserr ("(libev) error creating pipe");
784
785 siginit (EV_A);
786 }
787
788 postfork = 0;
669} 789}
670 790
671#if EV_MULTIPLICITY 791#if EV_MULTIPLICITY
672struct ev_loop * 792struct ev_loop *
673ev_loop_new (int methods) 793ev_loop_new (int methods)
674{ 794{
675 struct ev_loop *loop = (struct ev_loop *)calloc (1, sizeof (struct ev_loop)); 795 struct ev_loop *loop = (struct ev_loop *)ev_malloc (sizeof (struct ev_loop));
796
797 memset (loop, 0, sizeof (struct ev_loop));
676 798
677 loop_init (EV_A_ methods); 799 loop_init (EV_A_ methods);
678 800
679 if (ev_method (EV_A)) 801 if (ev_method (EV_A))
680 return loop; 802 return loop;
684 806
685void 807void
686ev_loop_destroy (EV_P) 808ev_loop_destroy (EV_P)
687{ 809{
688 loop_destroy (EV_A); 810 loop_destroy (EV_A);
689 free (loop); 811 ev_free (loop);
690} 812}
691 813
692void 814void
693ev_loop_fork (EV_P) 815ev_loop_fork (EV_P)
694{ 816{
695 loop_fork (EV_A); 817 postfork = 1;
696} 818}
697 819
698#endif 820#endif
699 821
700#if EV_MULTIPLICITY 822#if EV_MULTIPLICITY
723 845
724 loop_init (EV_A_ methods); 846 loop_init (EV_A_ methods);
725 847
726 if (ev_method (EV_A)) 848 if (ev_method (EV_A))
727 { 849 {
728 ev_watcher_init (&sigev, sigcb);
729 ev_set_priority (&sigev, EV_MAXPRI);
730 siginit (EV_A); 850 siginit (EV_A);
731 851
732#ifndef WIN32 852#ifndef WIN32
733 ev_signal_init (&childev, childcb, SIGCHLD); 853 ev_signal_init (&childev, childcb, SIGCHLD);
734 ev_set_priority (&childev, EV_MAXPRI); 854 ev_set_priority (&childev, EV_MAXPRI);
748{ 868{
749#if EV_MULTIPLICITY 869#if EV_MULTIPLICITY
750 struct ev_loop *loop = default_loop; 870 struct ev_loop *loop = default_loop;
751#endif 871#endif
752 872
873#ifndef WIN32
753 ev_ref (EV_A); /* child watcher */ 874 ev_ref (EV_A); /* child watcher */
754 ev_signal_stop (EV_A_ &childev); 875 ev_signal_stop (EV_A_ &childev);
876#endif
755 877
756 ev_ref (EV_A); /* signal watcher */ 878 ev_ref (EV_A); /* signal watcher */
757 ev_io_stop (EV_A_ &sigev); 879 ev_io_stop (EV_A_ &sigev);
758 880
759 close (sigpipe [0]); sigpipe [0] = 0; 881 close (sigpipe [0]); sigpipe [0] = 0;
767{ 889{
768#if EV_MULTIPLICITY 890#if EV_MULTIPLICITY
769 struct ev_loop *loop = default_loop; 891 struct ev_loop *loop = default_loop;
770#endif 892#endif
771 893
772 loop_fork (EV_A); 894 if (method)
773 895 postfork = 1;
774 ev_io_stop (EV_A_ &sigev);
775 close (sigpipe [0]);
776 close (sigpipe [1]);
777 pipe (sigpipe);
778
779 ev_ref (EV_A); /* signal watcher */
780 siginit (EV_A);
781} 896}
782 897
783/*****************************************************************************/ 898/*****************************************************************************/
784 899
785static void 900static void
793 ANPENDING *p = pendings [pri] + --pendingcnt [pri]; 908 ANPENDING *p = pendings [pri] + --pendingcnt [pri];
794 909
795 if (p->w) 910 if (p->w)
796 { 911 {
797 p->w->pending = 0; 912 p->w->pending = 0;
798
799 (*(void (**)(EV_P_ W, int))&p->w->cb) (EV_A_ p->w, p->events); 913 p->w->cb (EV_A_ p->w, p->events);
800 } 914 }
801 } 915 }
802} 916}
803 917
804static void 918static void
964 { 1078 {
965 queue_events (EV_A_ (W *)prepares, preparecnt, EV_PREPARE); 1079 queue_events (EV_A_ (W *)prepares, preparecnt, EV_PREPARE);
966 call_pending (EV_A); 1080 call_pending (EV_A);
967 } 1081 }
968 1082
1083 /* we might have forked, so reify kernel state if necessary */
1084 if (expect_false (postfork))
1085 loop_fork (EV_A);
1086
969 /* update fd-related kernel structures */ 1087 /* update fd-related kernel structures */
970 fd_reify (EV_A); 1088 fd_reify (EV_A);
971 1089
972 /* calculate blocking time */ 1090 /* calculate blocking time */
973 1091
1127 ((WT)w)->at += mn_now; 1245 ((WT)w)->at += mn_now;
1128 1246
1129 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.)); 1247 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.));
1130 1248
1131 ev_start (EV_A_ (W)w, ++timercnt); 1249 ev_start (EV_A_ (W)w, ++timercnt);
1132 array_needsize (timers, timermax, timercnt, ); 1250 array_needsize (timers, timermax, timercnt, (void));
1133 timers [timercnt - 1] = w; 1251 timers [timercnt - 1] = w;
1134 upheap ((WT *)timers, timercnt - 1); 1252 upheap ((WT *)timers, timercnt - 1);
1135 1253
1136 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w)); 1254 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));
1137} 1255}
1184 /* this formula differs from the one in periodic_reify because we do not always round up */ 1302 /* this formula differs from the one in periodic_reify because we do not always round up */
1185 if (w->interval) 1303 if (w->interval)
1186 ((WT)w)->at += ceil ((rt_now - ((WT)w)->at) / w->interval) * w->interval; 1304 ((WT)w)->at += ceil ((rt_now - ((WT)w)->at) / w->interval) * w->interval;
1187 1305
1188 ev_start (EV_A_ (W)w, ++periodiccnt); 1306 ev_start (EV_A_ (W)w, ++periodiccnt);
1189 array_needsize (periodics, periodicmax, periodiccnt, ); 1307 array_needsize (periodics, periodicmax, periodiccnt, (void));
1190 periodics [periodiccnt - 1] = w; 1308 periodics [periodiccnt - 1] = w;
1191 upheap ((WT *)periodics, periodiccnt - 1); 1309 upheap ((WT *)periodics, periodiccnt - 1);
1192 1310
1193 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w)); 1311 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));
1194} 1312}
1216{ 1334{
1217 if (ev_is_active (w)) 1335 if (ev_is_active (w))
1218 return; 1336 return;
1219 1337
1220 ev_start (EV_A_ (W)w, ++idlecnt); 1338 ev_start (EV_A_ (W)w, ++idlecnt);
1221 array_needsize (idles, idlemax, idlecnt, ); 1339 array_needsize (idles, idlemax, idlecnt, (void));
1222 idles [idlecnt - 1] = w; 1340 idles [idlecnt - 1] = w;
1223} 1341}
1224 1342
1225void 1343void
1226ev_idle_stop (EV_P_ struct ev_idle *w) 1344ev_idle_stop (EV_P_ struct ev_idle *w)
1238{ 1356{
1239 if (ev_is_active (w)) 1357 if (ev_is_active (w))
1240 return; 1358 return;
1241 1359
1242 ev_start (EV_A_ (W)w, ++preparecnt); 1360 ev_start (EV_A_ (W)w, ++preparecnt);
1243 array_needsize (prepares, preparemax, preparecnt, ); 1361 array_needsize (prepares, preparemax, preparecnt, (void));
1244 prepares [preparecnt - 1] = w; 1362 prepares [preparecnt - 1] = w;
1245} 1363}
1246 1364
1247void 1365void
1248ev_prepare_stop (EV_P_ struct ev_prepare *w) 1366ev_prepare_stop (EV_P_ struct ev_prepare *w)
1260{ 1378{
1261 if (ev_is_active (w)) 1379 if (ev_is_active (w))
1262 return; 1380 return;
1263 1381
1264 ev_start (EV_A_ (W)w, ++checkcnt); 1382 ev_start (EV_A_ (W)w, ++checkcnt);
1265 array_needsize (checks, checkmax, checkcnt, ); 1383 array_needsize (checks, checkmax, checkcnt, (void));
1266 checks [checkcnt - 1] = w; 1384 checks [checkcnt - 1] = w;
1267} 1385}
1268 1386
1269void 1387void
1270ev_check_stop (EV_P_ struct ev_check *w) 1388ev_check_stop (EV_P_ struct ev_check *w)
1296 array_needsize (signals, signalmax, w->signum, signals_init); 1414 array_needsize (signals, signalmax, w->signum, signals_init);
1297 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w); 1415 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w);
1298 1416
1299 if (!((WL)w)->next) 1417 if (!((WL)w)->next)
1300 { 1418 {
1419#if WIN32
1420 signal (w->signum, sighandler);
1421#else
1301 struct sigaction sa; 1422 struct sigaction sa;
1302 sa.sa_handler = sighandler; 1423 sa.sa_handler = sighandler;
1303 sigfillset (&sa.sa_mask); 1424 sigfillset (&sa.sa_mask);
1304 sa.sa_flags = SA_RESTART; /* if restarting works we save one iteration */ 1425 sa.sa_flags = SA_RESTART; /* if restarting works we save one iteration */
1305 sigaction (w->signum, &sa, 0); 1426 sigaction (w->signum, &sa, 0);
1427#endif
1306 } 1428 }
1307} 1429}
1308 1430
1309void 1431void
1310ev_signal_stop (EV_P_ struct ev_signal *w) 1432ev_signal_stop (EV_P_ struct ev_signal *w)
1360 void (*cb)(int revents, void *arg) = once->cb; 1482 void (*cb)(int revents, void *arg) = once->cb;
1361 void *arg = once->arg; 1483 void *arg = once->arg;
1362 1484
1363 ev_io_stop (EV_A_ &once->io); 1485 ev_io_stop (EV_A_ &once->io);
1364 ev_timer_stop (EV_A_ &once->to); 1486 ev_timer_stop (EV_A_ &once->to);
1365 free (once); 1487 ev_free (once);
1366 1488
1367 cb (revents, arg); 1489 cb (revents, arg);
1368} 1490}
1369 1491
1370static void 1492static void
1380} 1502}
1381 1503
1382void 1504void
1383ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg) 1505ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg)
1384{ 1506{
1385 struct ev_once *once = malloc (sizeof (struct ev_once)); 1507 struct ev_once *once = ev_malloc (sizeof (struct ev_once));
1386 1508
1387 if (!once) 1509 if (!once)
1388 cb (EV_ERROR | EV_READ | EV_WRITE | EV_TIMEOUT, arg); 1510 cb (EV_ERROR | EV_READ | EV_WRITE | EV_TIMEOUT, arg);
1389 else 1511 else
1390 { 1512 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines