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

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines