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

Comparing libev/ev.c (file contents):
Revision 1.76 by root, Wed Nov 7 18:47:26 2007 UTC vs.
Revision 1.86 by root, Sat Nov 10 03:19:21 2007 UTC

126#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */ 126#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
127#define MAX_BLOCKTIME 59.731 /* never wait longer than this time (to detect time jumps) */ 127#define MAX_BLOCKTIME 59.731 /* never wait longer than this time (to detect time jumps) */
128#define PID_HASHSIZE 16 /* size of pid hash table, must be power of two */ 128#define PID_HASHSIZE 16 /* size of pid hash table, must be power of two */
129/*#define CLEANUP_INTERVAL 300. /* how often to try to free memory and re-check fds */ 129/*#define CLEANUP_INTERVAL 300. /* how often to try to free memory and re-check fds */
130 130
131#ifdef EV_H
132# include EV_H
133#else
131#include "ev.h" 134# include "ev.h"
135#endif
132 136
133#if __GNUC__ >= 3 137#if __GNUC__ >= 3
134# define expect(expr,value) __builtin_expect ((expr),(value)) 138# define expect(expr,value) __builtin_expect ((expr),(value))
135# define inline inline 139# define inline inline
136#else 140#else
215 int events; 219 int events;
216} ANPENDING; 220} ANPENDING;
217 221
218#if EV_MULTIPLICITY 222#if EV_MULTIPLICITY
219 223
220struct ev_loop 224 struct ev_loop
221{ 225 {
226 ev_tstamp ev_rt_now;
222# define VAR(name,decl) decl; 227 #define VAR(name,decl) decl;
223# include "ev_vars.h" 228 #include "ev_vars.h"
224};
225# undef VAR 229 #undef VAR
230 };
226# include "ev_wrap.h" 231 #include "ev_wrap.h"
232
233 struct ev_loop default_loop_struct;
234 static struct ev_loop *default_loop;
227 235
228#else 236#else
229 237
238 ev_tstamp ev_rt_now;
230# define VAR(name,decl) static decl; 239 #define VAR(name,decl) static decl;
231# include "ev_vars.h" 240 #include "ev_vars.h"
232# undef VAR 241 #undef VAR
242
243 static int default_loop;
233 244
234#endif 245#endif
235 246
236/*****************************************************************************/ 247/*****************************************************************************/
237 248
262#endif 273#endif
263 274
264 return ev_time (); 275 return ev_time ();
265} 276}
266 277
278#if EV_MULTIPLICITY
267ev_tstamp 279ev_tstamp
268ev_now (EV_P) 280ev_now (EV_P)
269{ 281{
270 return rt_now; 282 return ev_rt_now;
271} 283}
284#endif
272 285
273#define array_roundsize(type,n) ((n) | 4 & ~3) 286#define array_roundsize(type,n) ((n) | 4 & ~3)
274 287
275#define array_needsize(type,base,cur,cnt,init) \ 288#define array_needsize(type,base,cur,cnt,init) \
276 if (expect_false ((cnt) > cur)) \ 289 if (expect_false ((cnt) > cur)) \
316 329
317 ++base; 330 ++base;
318 } 331 }
319} 332}
320 333
321static void 334void
322event (EV_P_ W w, int events) 335ev_feed_event (EV_P_ void *w, int revents)
323{ 336{
337 W w_ = (W)w;
338
324 if (w->pending) 339 if (w_->pending)
325 { 340 {
326 pendings [ABSPRI (w)][w->pending - 1].events |= events; 341 pendings [ABSPRI (w_)][w_->pending - 1].events |= revents;
327 return; 342 return;
328 } 343 }
329 344
330 w->pending = ++pendingcnt [ABSPRI (w)]; 345 w_->pending = ++pendingcnt [ABSPRI (w_)];
331 array_needsize (ANPENDING, pendings [ABSPRI (w)], pendingmax [ABSPRI (w)], pendingcnt [ABSPRI (w)], (void)); 346 array_needsize (ANPENDING, pendings [ABSPRI (w_)], pendingmax [ABSPRI (w_)], pendingcnt [ABSPRI (w_)], (void));
332 pendings [ABSPRI (w)][w->pending - 1].w = w; 347 pendings [ABSPRI (w_)][w_->pending - 1].w = w_;
333 pendings [ABSPRI (w)][w->pending - 1].events = events; 348 pendings [ABSPRI (w_)][w_->pending - 1].events = revents;
334} 349}
335 350
336static void 351static void
337queue_events (EV_P_ W *events, int eventcnt, int type) 352queue_events (EV_P_ W *events, int eventcnt, int type)
338{ 353{
339 int i; 354 int i;
340 355
341 for (i = 0; i < eventcnt; ++i) 356 for (i = 0; i < eventcnt; ++i)
342 event (EV_A_ events [i], type); 357 ev_feed_event (EV_A_ events [i], type);
343} 358}
344 359
345static void 360inline void
346fd_event (EV_P_ int fd, int events) 361fd_event (EV_P_ int fd, int revents)
347{ 362{
348 ANFD *anfd = anfds + fd; 363 ANFD *anfd = anfds + fd;
349 struct ev_io *w; 364 struct ev_io *w;
350 365
351 for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next) 366 for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next)
352 { 367 {
353 int ev = w->events & events; 368 int ev = w->events & revents;
354 369
355 if (ev) 370 if (ev)
356 event (EV_A_ (W)w, ev); 371 ev_feed_event (EV_A_ (W)w, ev);
357 } 372 }
373}
374
375void
376ev_feed_fd_event (EV_P_ int fd, int revents)
377{
378 fd_event (EV_A_ fd, revents);
358} 379}
359 380
360/*****************************************************************************/ 381/*****************************************************************************/
361 382
362static void 383static void
403 struct ev_io *w; 424 struct ev_io *w;
404 425
405 while ((w = (struct ev_io *)anfds [fd].head)) 426 while ((w = (struct ev_io *)anfds [fd].head))
406 { 427 {
407 ev_io_stop (EV_A_ w); 428 ev_io_stop (EV_A_ w);
408 event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE); 429 ev_feed_event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE);
409 } 430 }
410} 431}
411 432
412static int 433static int
413fd_valid (int fd) 434fd_valid (int fd)
501 522
502 heap [k] = w; 523 heap [k] = w;
503 ((W)heap [k])->active = k + 1; 524 ((W)heap [k])->active = k + 1;
504} 525}
505 526
527inline void
528adjustheap (WT *heap, int N, int k, ev_tstamp at)
529{
530 ev_tstamp old_at = heap [k]->at;
531 heap [k]->at = at;
532
533 if (old_at < at)
534 downheap (heap, N, k);
535 else
536 upheap (heap, k);
537}
538
506/*****************************************************************************/ 539/*****************************************************************************/
507 540
508typedef struct 541typedef struct
509{ 542{
510 WL head; 543 WL head;
550#endif 583#endif
551 errno = old_errno; 584 errno = old_errno;
552 } 585 }
553} 586}
554 587
588void
589ev_feed_signal_event (EV_P_ int signum)
590{
591 WL w;
592
593#if EV_MULTIPLICITY
594 assert (("feeding signal events is only supported in the default loop", loop == default_loop));
595#endif
596
597 --signum;
598
599 if (signum < 0 || signum >= signalmax)
600 return;
601
602 signals [signum].gotsig = 0;
603
604 for (w = signals [signum].head; w; w = w->next)
605 ev_feed_event (EV_A_ (W)w, EV_SIGNAL);
606}
607
555static void 608static void
556sigcb (EV_P_ struct ev_io *iow, int revents) 609sigcb (EV_P_ struct ev_io *iow, int revents)
557{ 610{
558 WL w;
559 int signum; 611 int signum;
560 612
561#ifdef WIN32 613#ifdef WIN32
562 recv (sigpipe [0], &revents, 1, MSG_DONTWAIT); 614 recv (sigpipe [0], &revents, 1, MSG_DONTWAIT);
563#else 615#else
565#endif 617#endif
566 gotsig = 0; 618 gotsig = 0;
567 619
568 for (signum = signalmax; signum--; ) 620 for (signum = signalmax; signum--; )
569 if (signals [signum].gotsig) 621 if (signals [signum].gotsig)
570 { 622 ev_feed_signal_event (EV_A_ signum + 1);
571 signals [signum].gotsig = 0;
572
573 for (w = signals [signum].head; w; w = w->next)
574 event (EV_A_ (W)w, EV_SIGNAL);
575 }
576} 623}
577 624
578static void 625static void
579siginit (EV_P) 626siginit (EV_P)
580{ 627{
613 if (w->pid == pid || !w->pid) 660 if (w->pid == pid || !w->pid)
614 { 661 {
615 ev_priority (w) = ev_priority (sw); /* need to do it *now* */ 662 ev_priority (w) = ev_priority (sw); /* need to do it *now* */
616 w->rpid = pid; 663 w->rpid = pid;
617 w->rstatus = status; 664 w->rstatus = status;
618 event (EV_A_ (W)w, EV_CHILD); 665 ev_feed_event (EV_A_ (W)w, EV_CHILD);
619 } 666 }
620} 667}
621 668
622static void 669static void
623childcb (EV_P_ struct ev_signal *sw, int revents) 670childcb (EV_P_ struct ev_signal *sw, int revents)
625 int pid, status; 672 int pid, status;
626 673
627 if (0 < (pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED))) 674 if (0 < (pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED)))
628 { 675 {
629 /* make sure we are called again until all childs have been reaped */ 676 /* make sure we are called again until all childs have been reaped */
630 event (EV_A_ (W)sw, EV_SIGNAL); 677 ev_feed_event (EV_A_ (W)sw, EV_SIGNAL);
631 678
632 child_reap (EV_A_ sw, pid, pid, status); 679 child_reap (EV_A_ sw, pid, pid, status);
633 child_reap (EV_A_ sw, 0, pid, status); /* this might trigger a watcher twice, but event catches that */ 680 child_reap (EV_A_ sw, 0, pid, status); /* this might trigger a watcher twice, but event catches that */
634 } 681 }
635} 682}
692 if (!clock_gettime (CLOCK_MONOTONIC, &ts)) 739 if (!clock_gettime (CLOCK_MONOTONIC, &ts))
693 have_monotonic = 1; 740 have_monotonic = 1;
694 } 741 }
695#endif 742#endif
696 743
697 rt_now = ev_time (); 744 ev_rt_now = ev_time ();
698 mn_now = get_clock (); 745 mn_now = get_clock ();
699 now_floor = mn_now; 746 now_floor = mn_now;
700 rtmn_diff = rt_now - mn_now; 747 rtmn_diff = ev_rt_now - mn_now;
701 748
702 if (methods == EVMETHOD_AUTO) 749 if (methods == EVMETHOD_AUTO)
703 if (!enable_secure () && getenv ("LIBEV_METHODS")) 750 if (!enable_secure () && getenv ("LIBEV_METHODS"))
704 methods = atoi (getenv ("LIBEV_METHODS")); 751 methods = atoi (getenv ("LIBEV_METHODS"));
705 else 752 else
720#endif 767#endif
721#if EV_USE_SELECT 768#if EV_USE_SELECT
722 if (!method && (methods & EVMETHOD_SELECT)) method = select_init (EV_A_ methods); 769 if (!method && (methods & EVMETHOD_SELECT)) method = select_init (EV_A_ methods);
723#endif 770#endif
724 771
725 ev_watcher_init (&sigev, sigcb); 772 ev_init (&sigev, sigcb);
726 ev_set_priority (&sigev, EV_MAXPRI); 773 ev_set_priority (&sigev, EV_MAXPRI);
727 } 774 }
728} 775}
729 776
730void 777void
820} 867}
821 868
822#endif 869#endif
823 870
824#if EV_MULTIPLICITY 871#if EV_MULTIPLICITY
825struct ev_loop default_loop_struct;
826static struct ev_loop *default_loop;
827
828struct ev_loop * 872struct ev_loop *
829#else 873#else
830static int default_loop;
831
832int 874int
833#endif 875#endif
834ev_default_loop (int methods) 876ev_default_loop (int methods)
835{ 877{
836 if (sigpipe [0] == sigpipe [1]) 878 if (sigpipe [0] == sigpipe [1])
922 ANPENDING *p = pendings [pri] + --pendingcnt [pri]; 964 ANPENDING *p = pendings [pri] + --pendingcnt [pri];
923 965
924 if (p->w) 966 if (p->w)
925 { 967 {
926 p->w->pending = 0; 968 p->w->pending = 0;
927 p->w->cb (EV_A_ p->w, p->events); 969 EV_CB_INVOKE (p->w, p->events);
928 } 970 }
929 } 971 }
930} 972}
931 973
932static void 974static void
946 downheap ((WT *)timers, timercnt, 0); 988 downheap ((WT *)timers, timercnt, 0);
947 } 989 }
948 else 990 else
949 ev_timer_stop (EV_A_ w); /* nonrepeating: stop timer */ 991 ev_timer_stop (EV_A_ w); /* nonrepeating: stop timer */
950 992
951 event (EV_A_ (W)w, EV_TIMEOUT); 993 ev_feed_event (EV_A_ (W)w, EV_TIMEOUT);
952 } 994 }
953} 995}
954 996
955static void 997static void
956periodics_reify (EV_P) 998periodics_reify (EV_P)
957{ 999{
958 while (periodiccnt && ((WT)periodics [0])->at <= rt_now) 1000 while (periodiccnt && ((WT)periodics [0])->at <= ev_rt_now)
959 { 1001 {
960 struct ev_periodic *w = periodics [0]; 1002 struct ev_periodic *w = periodics [0];
961 1003
962 assert (("inactive timer on periodic heap detected", ev_is_active (w))); 1004 assert (("inactive timer on periodic heap detected", ev_is_active (w)));
963 1005
964 /* first reschedule or stop timer */ 1006 /* first reschedule or stop timer */
965 if (w->interval) 1007 if (w->reschedule_cb)
966 { 1008 {
1009 ev_tstamp at = ((WT)w)->at = w->reschedule_cb (w, ev_rt_now + 0.0001);
1010
1011 assert (("ev_periodic reschedule callback returned time in the past", ((WT)w)->at > ev_rt_now));
1012 downheap ((WT *)periodics, periodiccnt, 0);
1013 }
1014 else if (w->interval)
1015 {
967 ((WT)w)->at += floor ((rt_now - ((WT)w)->at) / w->interval + 1.) * w->interval; 1016 ((WT)w)->at += floor ((ev_rt_now - ((WT)w)->at) / w->interval + 1.) * w->interval;
968 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", ((WT)w)->at > rt_now)); 1017 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", ((WT)w)->at > ev_rt_now));
969 downheap ((WT *)periodics, periodiccnt, 0); 1018 downheap ((WT *)periodics, periodiccnt, 0);
970 } 1019 }
971 else 1020 else
972 ev_periodic_stop (EV_A_ w); /* nonrepeating: stop timer */ 1021 ev_periodic_stop (EV_A_ w); /* nonrepeating: stop timer */
973 1022
974 event (EV_A_ (W)w, EV_PERIODIC); 1023 ev_feed_event (EV_A_ (W)w, EV_PERIODIC);
975 } 1024 }
976} 1025}
977 1026
978static void 1027static void
979periodics_reschedule (EV_P) 1028periodics_reschedule (EV_P)
983 /* adjust periodics after time jump */ 1032 /* adjust periodics after time jump */
984 for (i = 0; i < periodiccnt; ++i) 1033 for (i = 0; i < periodiccnt; ++i)
985 { 1034 {
986 struct ev_periodic *w = periodics [i]; 1035 struct ev_periodic *w = periodics [i];
987 1036
1037 if (w->reschedule_cb)
1038 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now);
988 if (w->interval) 1039 else if (w->interval)
989 {
990 ev_tstamp diff = ceil ((rt_now - ((WT)w)->at) / w->interval) * w->interval; 1040 ((WT)w)->at += ceil ((ev_rt_now - ((WT)w)->at) / w->interval) * w->interval;
991
992 if (fabs (diff) >= 1e-4)
993 {
994 ev_periodic_stop (EV_A_ w);
995 ev_periodic_start (EV_A_ w);
996
997 i = 0; /* restart loop, inefficient, but time jumps should be rare */
998 }
999 }
1000 } 1041 }
1042
1043 /* now rebuild the heap */
1044 for (i = periodiccnt >> 1; i--; )
1045 downheap ((WT *)periodics, periodiccnt, i);
1001} 1046}
1002 1047
1003inline int 1048inline int
1004time_update_monotonic (EV_P) 1049time_update_monotonic (EV_P)
1005{ 1050{
1006 mn_now = get_clock (); 1051 mn_now = get_clock ();
1007 1052
1008 if (expect_true (mn_now - now_floor < MIN_TIMEJUMP * .5)) 1053 if (expect_true (mn_now - now_floor < MIN_TIMEJUMP * .5))
1009 { 1054 {
1010 rt_now = rtmn_diff + mn_now; 1055 ev_rt_now = rtmn_diff + mn_now;
1011 return 0; 1056 return 0;
1012 } 1057 }
1013 else 1058 else
1014 { 1059 {
1015 now_floor = mn_now; 1060 now_floor = mn_now;
1016 rt_now = ev_time (); 1061 ev_rt_now = ev_time ();
1017 return 1; 1062 return 1;
1018 } 1063 }
1019} 1064}
1020 1065
1021static void 1066static void
1030 { 1075 {
1031 ev_tstamp odiff = rtmn_diff; 1076 ev_tstamp odiff = rtmn_diff;
1032 1077
1033 for (i = 4; --i; ) /* loop a few times, before making important decisions */ 1078 for (i = 4; --i; ) /* loop a few times, before making important decisions */
1034 { 1079 {
1035 rtmn_diff = rt_now - mn_now; 1080 rtmn_diff = ev_rt_now - mn_now;
1036 1081
1037 if (fabs (odiff - rtmn_diff) < MIN_TIMEJUMP) 1082 if (fabs (odiff - rtmn_diff) < MIN_TIMEJUMP)
1038 return; /* all is well */ 1083 return; /* all is well */
1039 1084
1040 rt_now = ev_time (); 1085 ev_rt_now = ev_time ();
1041 mn_now = get_clock (); 1086 mn_now = get_clock ();
1042 now_floor = mn_now; 1087 now_floor = mn_now;
1043 } 1088 }
1044 1089
1045 periodics_reschedule (EV_A); 1090 periodics_reschedule (EV_A);
1048 } 1093 }
1049 } 1094 }
1050 else 1095 else
1051#endif 1096#endif
1052 { 1097 {
1053 rt_now = ev_time (); 1098 ev_rt_now = ev_time ();
1054 1099
1055 if (expect_false (mn_now > rt_now || mn_now < rt_now - MAX_BLOCKTIME - MIN_TIMEJUMP)) 1100 if (expect_false (mn_now > ev_rt_now || mn_now < ev_rt_now - MAX_BLOCKTIME - MIN_TIMEJUMP))
1056 { 1101 {
1057 periodics_reschedule (EV_A); 1102 periodics_reschedule (EV_A);
1058 1103
1059 /* adjust timers. this is easy, as the offset is the same for all */ 1104 /* adjust timers. this is easy, as the offset is the same for all */
1060 for (i = 0; i < timercnt; ++i) 1105 for (i = 0; i < timercnt; ++i)
1061 ((WT)timers [i])->at += rt_now - mn_now; 1106 ((WT)timers [i])->at += ev_rt_now - mn_now;
1062 } 1107 }
1063 1108
1064 mn_now = rt_now; 1109 mn_now = ev_rt_now;
1065 } 1110 }
1066} 1111}
1067 1112
1068void 1113void
1069ev_ref (EV_P) 1114ev_ref (EV_P)
1109 if (expect_true (have_monotonic)) 1154 if (expect_true (have_monotonic))
1110 time_update_monotonic (EV_A); 1155 time_update_monotonic (EV_A);
1111 else 1156 else
1112#endif 1157#endif
1113 { 1158 {
1114 rt_now = ev_time (); 1159 ev_rt_now = ev_time ();
1115 mn_now = rt_now; 1160 mn_now = ev_rt_now;
1116 } 1161 }
1117 1162
1118 if (flags & EVLOOP_NONBLOCK || idlecnt) 1163 if (flags & EVLOOP_NONBLOCK || idlecnt)
1119 block = 0.; 1164 block = 0.;
1120 else 1165 else
1127 if (block > to) block = to; 1172 if (block > to) block = to;
1128 } 1173 }
1129 1174
1130 if (periodiccnt) 1175 if (periodiccnt)
1131 { 1176 {
1132 ev_tstamp to = ((WT)periodics [0])->at - rt_now + method_fudge; 1177 ev_tstamp to = ((WT)periodics [0])->at - ev_rt_now + method_fudge;
1133 if (block > to) block = to; 1178 if (block > to) block = to;
1134 } 1179 }
1135 1180
1136 if (block < 0.) block = 0.; 1181 if (block < 0.) block = 0.;
1137 } 1182 }
1138 1183
1139 method_poll (EV_A_ block); 1184 method_poll (EV_A_ block);
1140 1185
1141 /* update rt_now, do magic */ 1186 /* update ev_rt_now, do magic */
1142 time_update (EV_A); 1187 time_update (EV_A);
1143 1188
1144 /* queue pending timers and reschedule them */ 1189 /* queue pending timers and reschedule them */
1145 timers_reify (EV_A); /* relative timers called last */ 1190 timers_reify (EV_A); /* relative timers called last */
1146 periodics_reify (EV_A); /* absolute timers called first */ 1191 periodics_reify (EV_A); /* absolute timers called first */
1292ev_timer_again (EV_P_ struct ev_timer *w) 1337ev_timer_again (EV_P_ struct ev_timer *w)
1293{ 1338{
1294 if (ev_is_active (w)) 1339 if (ev_is_active (w))
1295 { 1340 {
1296 if (w->repeat) 1341 if (w->repeat)
1297 {
1298 ((WT)w)->at = mn_now + w->repeat;
1299 downheap ((WT *)timers, timercnt, ((W)w)->active - 1); 1342 adjustheap ((WT *)timers, timercnt, ((W)w)->active - 1, mn_now + w->repeat);
1300 }
1301 else 1343 else
1302 ev_timer_stop (EV_A_ w); 1344 ev_timer_stop (EV_A_ w);
1303 } 1345 }
1304 else if (w->repeat) 1346 else if (w->repeat)
1305 ev_timer_start (EV_A_ w); 1347 ev_timer_start (EV_A_ w);
1309ev_periodic_start (EV_P_ struct ev_periodic *w) 1351ev_periodic_start (EV_P_ struct ev_periodic *w)
1310{ 1352{
1311 if (ev_is_active (w)) 1353 if (ev_is_active (w))
1312 return; 1354 return;
1313 1355
1356 if (w->reschedule_cb)
1357 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now);
1358 else if (w->interval)
1359 {
1314 assert (("ev_periodic_start called with negative interval value", w->interval >= 0.)); 1360 assert (("ev_periodic_start called with negative interval value", w->interval >= 0.));
1315
1316 /* this formula differs from the one in periodic_reify because we do not always round up */ 1361 /* this formula differs from the one in periodic_reify because we do not always round up */
1317 if (w->interval)
1318 ((WT)w)->at += ceil ((rt_now - ((WT)w)->at) / w->interval) * w->interval; 1362 ((WT)w)->at += ceil ((ev_rt_now - ((WT)w)->at) / w->interval) * w->interval;
1363 }
1319 1364
1320 ev_start (EV_A_ (W)w, ++periodiccnt); 1365 ev_start (EV_A_ (W)w, ++periodiccnt);
1321 array_needsize (struct ev_periodic *, periodics, periodicmax, periodiccnt, (void)); 1366 array_needsize (struct ev_periodic *, periodics, periodicmax, periodiccnt, (void));
1322 periodics [periodiccnt - 1] = w; 1367 periodics [periodiccnt - 1] = w;
1323 upheap ((WT *)periodics, periodiccnt - 1); 1368 upheap ((WT *)periodics, periodiccnt - 1);
1339 periodics [((W)w)->active - 1] = periodics [periodiccnt]; 1384 periodics [((W)w)->active - 1] = periodics [periodiccnt];
1340 downheap ((WT *)periodics, periodiccnt, ((W)w)->active - 1); 1385 downheap ((WT *)periodics, periodiccnt, ((W)w)->active - 1);
1341 } 1386 }
1342 1387
1343 ev_stop (EV_A_ (W)w); 1388 ev_stop (EV_A_ (W)w);
1389}
1390
1391void
1392ev_periodic_again (EV_P_ struct ev_periodic *w)
1393{
1394 /* TODO: use adjustheap and recalculation */
1395 ev_periodic_stop (EV_A_ w);
1396 ev_periodic_start (EV_A_ w);
1344} 1397}
1345 1398
1346void 1399void
1347ev_idle_start (EV_P_ struct ev_idle *w) 1400ev_idle_start (EV_P_ struct ev_idle *w)
1348{ 1401{
1525 else 1578 else
1526 { 1579 {
1527 once->cb = cb; 1580 once->cb = cb;
1528 once->arg = arg; 1581 once->arg = arg;
1529 1582
1530 ev_watcher_init (&once->io, once_cb_io); 1583 ev_init (&once->io, once_cb_io);
1531 if (fd >= 0) 1584 if (fd >= 0)
1532 { 1585 {
1533 ev_io_set (&once->io, fd, events); 1586 ev_io_set (&once->io, fd, events);
1534 ev_io_start (EV_A_ &once->io); 1587 ev_io_start (EV_A_ &once->io);
1535 } 1588 }
1536 1589
1537 ev_watcher_init (&once->to, once_cb_to); 1590 ev_init (&once->to, once_cb_to);
1538 if (timeout >= 0.) 1591 if (timeout >= 0.)
1539 { 1592 {
1540 ev_timer_set (&once->to, timeout, 0.); 1593 ev_timer_set (&once->to, timeout, 0.);
1541 ev_timer_start (EV_A_ &once->to); 1594 ev_timer_start (EV_A_ &once->to);
1542 } 1595 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines