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

Comparing libev/ev.c (file contents):
Revision 1.78 by root, Thu Nov 8 21:08:56 2007 UTC vs.
Revision 1.89 by root, Sat Nov 10 19:48:44 2007 UTC

26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
31#ifndef EV_STANDALONE 36#ifndef EV_STANDALONE
32# include "config.h" 37# include "config.h"
33 38
34# if HAVE_CLOCK_GETTIME 39# if HAVE_CLOCK_GETTIME
35# define EV_USE_MONOTONIC 1 40# define EV_USE_MONOTONIC 1
46 51
47# if HAVE_EPOLL && HAVE_EPOLL_CTL && HAVE_SYS_EPOLL_H 52# if HAVE_EPOLL && HAVE_EPOLL_CTL && HAVE_SYS_EPOLL_H
48# define EV_USE_EPOLL 1 53# define EV_USE_EPOLL 1
49# endif 54# endif
50 55
51# if HAVE_KQUEUE && HAVE_WORKING_KQUEUE && HAVE_SYS_EVENT_H && HAVE_SYS_QUEUE_H 56# if HAVE_KQUEUE && HAVE_SYS_EVENT_H && HAVE_SYS_QUEUE_H
52# define EV_USE_KQUEUE 1 57# define EV_USE_KQUEUE 1
53# endif 58# endif
54 59
55#endif 60#endif
56 61
126#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */ 131#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) */ 132#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 */ 133#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 */ 134/*#define CLEANUP_INTERVAL 300. /* how often to try to free memory and re-check fds */
130 135
136#ifdef EV_H
137# include EV_H
138#else
131#include "ev.h" 139# include "ev.h"
140#endif
132 141
133#if __GNUC__ >= 3 142#if __GNUC__ >= 3
134# define expect(expr,value) __builtin_expect ((expr),(value)) 143# define expect(expr,value) __builtin_expect ((expr),(value))
135# define inline inline 144# define inline inline
136#else 145#else
215 int events; 224 int events;
216} ANPENDING; 225} ANPENDING;
217 226
218#if EV_MULTIPLICITY 227#if EV_MULTIPLICITY
219 228
220struct ev_loop 229 struct ev_loop
221{ 230 {
231 ev_tstamp ev_rt_now;
222# define VAR(name,decl) decl; 232 #define VAR(name,decl) decl;
223# include "ev_vars.h" 233 #include "ev_vars.h"
224};
225# undef VAR 234 #undef VAR
235 };
226# include "ev_wrap.h" 236 #include "ev_wrap.h"
237
238 struct ev_loop default_loop_struct;
239 static struct ev_loop *default_loop;
227 240
228#else 241#else
229 242
243 ev_tstamp ev_rt_now;
230# define VAR(name,decl) static decl; 244 #define VAR(name,decl) static decl;
231# include "ev_vars.h" 245 #include "ev_vars.h"
232# undef VAR 246 #undef VAR
247
248 static int default_loop;
233 249
234#endif 250#endif
235 251
236/*****************************************************************************/ 252/*****************************************************************************/
237 253
262#endif 278#endif
263 279
264 return ev_time (); 280 return ev_time ();
265} 281}
266 282
283#if EV_MULTIPLICITY
267ev_tstamp 284ev_tstamp
268ev_now (EV_P) 285ev_now (EV_P)
269{ 286{
270 return rt_now; 287 return ev_rt_now;
271} 288}
289#endif
272 290
273#define array_roundsize(type,n) ((n) | 4 & ~3) 291#define array_roundsize(type,n) ((n) | 4 & ~3)
274 292
275#define array_needsize(type,base,cur,cnt,init) \ 293#define array_needsize(type,base,cur,cnt,init) \
276 if (expect_false ((cnt) > cur)) \ 294 if (expect_false ((cnt) > cur)) \
342 360
343 for (i = 0; i < eventcnt; ++i) 361 for (i = 0; i < eventcnt; ++i)
344 ev_feed_event (EV_A_ events [i], type); 362 ev_feed_event (EV_A_ events [i], type);
345} 363}
346 364
347static void 365inline void
348fd_event (EV_P_ int fd, int events) 366fd_event (EV_P_ int fd, int revents)
349{ 367{
350 ANFD *anfd = anfds + fd; 368 ANFD *anfd = anfds + fd;
351 struct ev_io *w; 369 struct ev_io *w;
352 370
353 for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next) 371 for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next)
354 { 372 {
355 int ev = w->events & events; 373 int ev = w->events & revents;
356 374
357 if (ev) 375 if (ev)
358 ev_feed_event (EV_A_ (W)w, ev); 376 ev_feed_event (EV_A_ (W)w, ev);
359 } 377 }
378}
379
380void
381ev_feed_fd_event (EV_P_ int fd, int revents)
382{
383 fd_event (EV_A_ fd, revents);
360} 384}
361 385
362/*****************************************************************************/ 386/*****************************************************************************/
363 387
364static void 388static void
503 527
504 heap [k] = w; 528 heap [k] = w;
505 ((W)heap [k])->active = k + 1; 529 ((W)heap [k])->active = k + 1;
506} 530}
507 531
532inline void
533adjustheap (WT *heap, int N, int k, ev_tstamp at)
534{
535 ev_tstamp old_at = heap [k]->at;
536 heap [k]->at = at;
537
538 if (old_at < at)
539 downheap (heap, N, k);
540 else
541 upheap (heap, k);
542}
543
508/*****************************************************************************/ 544/*****************************************************************************/
509 545
510typedef struct 546typedef struct
511{ 547{
512 WL head; 548 WL head;
552#endif 588#endif
553 errno = old_errno; 589 errno = old_errno;
554 } 590 }
555} 591}
556 592
593void
594ev_feed_signal_event (EV_P_ int signum)
595{
596 WL w;
597
598#if EV_MULTIPLICITY
599 assert (("feeding signal events is only supported in the default loop", loop == default_loop));
600#endif
601
602 --signum;
603
604 if (signum < 0 || signum >= signalmax)
605 return;
606
607 signals [signum].gotsig = 0;
608
609 for (w = signals [signum].head; w; w = w->next)
610 ev_feed_event (EV_A_ (W)w, EV_SIGNAL);
611}
612
557static void 613static void
558sigcb (EV_P_ struct ev_io *iow, int revents) 614sigcb (EV_P_ struct ev_io *iow, int revents)
559{ 615{
560 WL w;
561 int signum; 616 int signum;
562 617
563#ifdef WIN32 618#ifdef WIN32
564 recv (sigpipe [0], &revents, 1, MSG_DONTWAIT); 619 recv (sigpipe [0], &revents, 1, MSG_DONTWAIT);
565#else 620#else
567#endif 622#endif
568 gotsig = 0; 623 gotsig = 0;
569 624
570 for (signum = signalmax; signum--; ) 625 for (signum = signalmax; signum--; )
571 if (signals [signum].gotsig) 626 if (signals [signum].gotsig)
572 { 627 ev_feed_signal_event (EV_A_ signum + 1);
573 signals [signum].gotsig = 0;
574
575 for (w = signals [signum].head; w; w = w->next)
576 ev_feed_event (EV_A_ (W)w, EV_SIGNAL);
577 }
578} 628}
579 629
580static void 630static void
581siginit (EV_P) 631siginit (EV_P)
582{ 632{
694 if (!clock_gettime (CLOCK_MONOTONIC, &ts)) 744 if (!clock_gettime (CLOCK_MONOTONIC, &ts))
695 have_monotonic = 1; 745 have_monotonic = 1;
696 } 746 }
697#endif 747#endif
698 748
699 rt_now = ev_time (); 749 ev_rt_now = ev_time ();
700 mn_now = get_clock (); 750 mn_now = get_clock ();
701 now_floor = mn_now; 751 now_floor = mn_now;
702 rtmn_diff = rt_now - mn_now; 752 rtmn_diff = ev_rt_now - mn_now;
703 753
704 if (methods == EVMETHOD_AUTO) 754 if (methods == EVMETHOD_AUTO)
705 if (!enable_secure () && getenv ("LIBEV_METHODS")) 755 if (!enable_secure () && getenv ("LIBEV_METHODS"))
706 methods = atoi (getenv ("LIBEV_METHODS")); 756 methods = atoi (getenv ("LIBEV_METHODS"));
707 else 757 else
722#endif 772#endif
723#if EV_USE_SELECT 773#if EV_USE_SELECT
724 if (!method && (methods & EVMETHOD_SELECT)) method = select_init (EV_A_ methods); 774 if (!method && (methods & EVMETHOD_SELECT)) method = select_init (EV_A_ methods);
725#endif 775#endif
726 776
727 ev_watcher_init (&sigev, sigcb); 777 ev_init (&sigev, sigcb);
728 ev_set_priority (&sigev, EV_MAXPRI); 778 ev_set_priority (&sigev, EV_MAXPRI);
729 } 779 }
730} 780}
731 781
732void 782void
822} 872}
823 873
824#endif 874#endif
825 875
826#if EV_MULTIPLICITY 876#if EV_MULTIPLICITY
827struct ev_loop default_loop_struct;
828static struct ev_loop *default_loop;
829
830struct ev_loop * 877struct ev_loop *
831#else 878#else
832static int default_loop;
833
834int 879int
835#endif 880#endif
836ev_default_loop (int methods) 881ev_default_loop (int methods)
837{ 882{
838 if (sigpipe [0] == sigpipe [1]) 883 if (sigpipe [0] == sigpipe [1])
924 ANPENDING *p = pendings [pri] + --pendingcnt [pri]; 969 ANPENDING *p = pendings [pri] + --pendingcnt [pri];
925 970
926 if (p->w) 971 if (p->w)
927 { 972 {
928 p->w->pending = 0; 973 p->w->pending = 0;
929 p->w->cb (EV_A_ p->w, p->events); 974 EV_CB_INVOKE (p->w, p->events);
930 } 975 }
931 } 976 }
932} 977}
933 978
934static void 979static void
955} 1000}
956 1001
957static void 1002static void
958periodics_reify (EV_P) 1003periodics_reify (EV_P)
959{ 1004{
960 while (periodiccnt && ((WT)periodics [0])->at <= rt_now) 1005 while (periodiccnt && ((WT)periodics [0])->at <= ev_rt_now)
961 { 1006 {
962 struct ev_periodic *w = periodics [0]; 1007 struct ev_periodic *w = periodics [0];
963 1008
964 assert (("inactive timer on periodic heap detected", ev_is_active (w))); 1009 assert (("inactive timer on periodic heap detected", ev_is_active (w)));
965 1010
966 /* first reschedule or stop timer */ 1011 /* first reschedule or stop timer */
967 if (w->reschedule_cb) 1012 if (w->reschedule_cb)
968 { 1013 {
969 ev_tstamp at = ((WT)w)->at = w->reschedule_cb (w, rt_now + 0.0001); 1014 ev_tstamp at = ((WT)w)->at = w->reschedule_cb (w, ev_rt_now + 0.0001);
970 1015
971 assert (("ev_periodic reschedule callback returned time in the past", ((WT)w)->at > rt_now)); 1016 assert (("ev_periodic reschedule callback returned time in the past", ((WT)w)->at > ev_rt_now));
972 downheap ((WT *)periodics, periodiccnt, 0); 1017 downheap ((WT *)periodics, periodiccnt, 0);
973 } 1018 }
974 else if (w->interval) 1019 else if (w->interval)
975 { 1020 {
976 ((WT)w)->at += floor ((rt_now - ((WT)w)->at) / w->interval + 1.) * w->interval; 1021 ((WT)w)->at += floor ((ev_rt_now - ((WT)w)->at) / w->interval + 1.) * w->interval;
977 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", ((WT)w)->at > rt_now)); 1022 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", ((WT)w)->at > ev_rt_now));
978 downheap ((WT *)periodics, periodiccnt, 0); 1023 downheap ((WT *)periodics, periodiccnt, 0);
979 } 1024 }
980 else 1025 else
981 ev_periodic_stop (EV_A_ w); /* nonrepeating: stop timer */ 1026 ev_periodic_stop (EV_A_ w); /* nonrepeating: stop timer */
982 1027
993 for (i = 0; i < periodiccnt; ++i) 1038 for (i = 0; i < periodiccnt; ++i)
994 { 1039 {
995 struct ev_periodic *w = periodics [i]; 1040 struct ev_periodic *w = periodics [i];
996 1041
997 if (w->reschedule_cb) 1042 if (w->reschedule_cb)
998 ((WT)w)->at = w->reschedule_cb (w, rt_now); 1043 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now);
999 else if (w->interval) 1044 else if (w->interval)
1000 ((WT)w)->at += ceil ((rt_now - ((WT)w)->at) / w->interval) * w->interval; 1045 ((WT)w)->at += ceil ((ev_rt_now - ((WT)w)->at) / w->interval) * w->interval;
1001 } 1046 }
1002 1047
1003 /* now rebuild the heap */ 1048 /* now rebuild the heap */
1004 for (i = periodiccnt >> 1; i--; ) 1049 for (i = periodiccnt >> 1; i--; )
1005 downheap ((WT *)periodics, periodiccnt, i); 1050 downheap ((WT *)periodics, periodiccnt, i);
1010{ 1055{
1011 mn_now = get_clock (); 1056 mn_now = get_clock ();
1012 1057
1013 if (expect_true (mn_now - now_floor < MIN_TIMEJUMP * .5)) 1058 if (expect_true (mn_now - now_floor < MIN_TIMEJUMP * .5))
1014 { 1059 {
1015 rt_now = rtmn_diff + mn_now; 1060 ev_rt_now = rtmn_diff + mn_now;
1016 return 0; 1061 return 0;
1017 } 1062 }
1018 else 1063 else
1019 { 1064 {
1020 now_floor = mn_now; 1065 now_floor = mn_now;
1021 rt_now = ev_time (); 1066 ev_rt_now = ev_time ();
1022 return 1; 1067 return 1;
1023 } 1068 }
1024} 1069}
1025 1070
1026static void 1071static void
1035 { 1080 {
1036 ev_tstamp odiff = rtmn_diff; 1081 ev_tstamp odiff = rtmn_diff;
1037 1082
1038 for (i = 4; --i; ) /* loop a few times, before making important decisions */ 1083 for (i = 4; --i; ) /* loop a few times, before making important decisions */
1039 { 1084 {
1040 rtmn_diff = rt_now - mn_now; 1085 rtmn_diff = ev_rt_now - mn_now;
1041 1086
1042 if (fabs (odiff - rtmn_diff) < MIN_TIMEJUMP) 1087 if (fabs (odiff - rtmn_diff) < MIN_TIMEJUMP)
1043 return; /* all is well */ 1088 return; /* all is well */
1044 1089
1045 rt_now = ev_time (); 1090 ev_rt_now = ev_time ();
1046 mn_now = get_clock (); 1091 mn_now = get_clock ();
1047 now_floor = mn_now; 1092 now_floor = mn_now;
1048 } 1093 }
1049 1094
1050 periodics_reschedule (EV_A); 1095 periodics_reschedule (EV_A);
1053 } 1098 }
1054 } 1099 }
1055 else 1100 else
1056#endif 1101#endif
1057 { 1102 {
1058 rt_now = ev_time (); 1103 ev_rt_now = ev_time ();
1059 1104
1060 if (expect_false (mn_now > rt_now || mn_now < rt_now - MAX_BLOCKTIME - MIN_TIMEJUMP)) 1105 if (expect_false (mn_now > ev_rt_now || mn_now < ev_rt_now - MAX_BLOCKTIME - MIN_TIMEJUMP))
1061 { 1106 {
1062 periodics_reschedule (EV_A); 1107 periodics_reschedule (EV_A);
1063 1108
1064 /* adjust timers. this is easy, as the offset is the same for all */ 1109 /* adjust timers. this is easy, as the offset is the same for all */
1065 for (i = 0; i < timercnt; ++i) 1110 for (i = 0; i < timercnt; ++i)
1066 ((WT)timers [i])->at += rt_now - mn_now; 1111 ((WT)timers [i])->at += ev_rt_now - mn_now;
1067 } 1112 }
1068 1113
1069 mn_now = rt_now; 1114 mn_now = ev_rt_now;
1070 } 1115 }
1071} 1116}
1072 1117
1073void 1118void
1074ev_ref (EV_P) 1119ev_ref (EV_P)
1114 if (expect_true (have_monotonic)) 1159 if (expect_true (have_monotonic))
1115 time_update_monotonic (EV_A); 1160 time_update_monotonic (EV_A);
1116 else 1161 else
1117#endif 1162#endif
1118 { 1163 {
1119 rt_now = ev_time (); 1164 ev_rt_now = ev_time ();
1120 mn_now = rt_now; 1165 mn_now = ev_rt_now;
1121 } 1166 }
1122 1167
1123 if (flags & EVLOOP_NONBLOCK || idlecnt) 1168 if (flags & EVLOOP_NONBLOCK || idlecnt)
1124 block = 0.; 1169 block = 0.;
1125 else 1170 else
1132 if (block > to) block = to; 1177 if (block > to) block = to;
1133 } 1178 }
1134 1179
1135 if (periodiccnt) 1180 if (periodiccnt)
1136 { 1181 {
1137 ev_tstamp to = ((WT)periodics [0])->at - rt_now + method_fudge; 1182 ev_tstamp to = ((WT)periodics [0])->at - ev_rt_now + method_fudge;
1138 if (block > to) block = to; 1183 if (block > to) block = to;
1139 } 1184 }
1140 1185
1141 if (block < 0.) block = 0.; 1186 if (block < 0.) block = 0.;
1142 } 1187 }
1143 1188
1144 method_poll (EV_A_ block); 1189 method_poll (EV_A_ block);
1145 1190
1146 /* update rt_now, do magic */ 1191 /* update ev_rt_now, do magic */
1147 time_update (EV_A); 1192 time_update (EV_A);
1148 1193
1149 /* queue pending timers and reschedule them */ 1194 /* queue pending timers and reschedule them */
1150 timers_reify (EV_A); /* relative timers called last */ 1195 timers_reify (EV_A); /* relative timers called last */
1151 periodics_reify (EV_A); /* absolute timers called first */ 1196 periodics_reify (EV_A); /* absolute timers called first */
1247{ 1292{
1248 ev_clear_pending (EV_A_ (W)w); 1293 ev_clear_pending (EV_A_ (W)w);
1249 if (!ev_is_active (w)) 1294 if (!ev_is_active (w))
1250 return; 1295 return;
1251 1296
1297 assert (("ev_io_start called with illegal fd (must stay constant after start!)", w->fd >= 0 && w->fd < anfdmax));
1298
1252 wlist_del ((WL *)&anfds[w->fd].head, (WL)w); 1299 wlist_del ((WL *)&anfds[w->fd].head, (WL)w);
1253 ev_stop (EV_A_ (W)w); 1300 ev_stop (EV_A_ (W)w);
1254 1301
1255 fd_change (EV_A_ w->fd); 1302 fd_change (EV_A_ w->fd);
1256} 1303}
1297ev_timer_again (EV_P_ struct ev_timer *w) 1344ev_timer_again (EV_P_ struct ev_timer *w)
1298{ 1345{
1299 if (ev_is_active (w)) 1346 if (ev_is_active (w))
1300 { 1347 {
1301 if (w->repeat) 1348 if (w->repeat)
1302 {
1303 ((WT)w)->at = mn_now + w->repeat;
1304 downheap ((WT *)timers, timercnt, ((W)w)->active - 1); 1349 adjustheap ((WT *)timers, timercnt, ((W)w)->active - 1, mn_now + w->repeat);
1305 }
1306 else 1350 else
1307 ev_timer_stop (EV_A_ w); 1351 ev_timer_stop (EV_A_ w);
1308 } 1352 }
1309 else if (w->repeat) 1353 else if (w->repeat)
1310 ev_timer_start (EV_A_ w); 1354 ev_timer_start (EV_A_ w);
1315{ 1359{
1316 if (ev_is_active (w)) 1360 if (ev_is_active (w))
1317 return; 1361 return;
1318 1362
1319 if (w->reschedule_cb) 1363 if (w->reschedule_cb)
1320 ((WT)w)->at = w->reschedule_cb (w, rt_now); 1364 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now);
1321 else if (w->interval) 1365 else if (w->interval)
1322 { 1366 {
1323 assert (("ev_periodic_start called with negative interval value", w->interval >= 0.)); 1367 assert (("ev_periodic_start called with negative interval value", w->interval >= 0.));
1324 /* this formula differs from the one in periodic_reify because we do not always round up */ 1368 /* this formula differs from the one in periodic_reify because we do not always round up */
1325 ((WT)w)->at += ceil ((rt_now - ((WT)w)->at) / w->interval) * w->interval; 1369 ((WT)w)->at += ceil ((ev_rt_now - ((WT)w)->at) / w->interval) * w->interval;
1326 } 1370 }
1327 1371
1328 ev_start (EV_A_ (W)w, ++periodiccnt); 1372 ev_start (EV_A_ (W)w, ++periodiccnt);
1329 array_needsize (struct ev_periodic *, periodics, periodicmax, periodiccnt, (void)); 1373 array_needsize (struct ev_periodic *, periodics, periodicmax, periodiccnt, (void));
1330 periodics [periodiccnt - 1] = w; 1374 periodics [periodiccnt - 1] = w;
1352} 1396}
1353 1397
1354void 1398void
1355ev_periodic_again (EV_P_ struct ev_periodic *w) 1399ev_periodic_again (EV_P_ struct ev_periodic *w)
1356{ 1400{
1401 /* TODO: use adjustheap and recalculation */
1357 ev_periodic_stop (EV_A_ w); 1402 ev_periodic_stop (EV_A_ w);
1358 ev_periodic_start (EV_A_ w); 1403 ev_periodic_start (EV_A_ w);
1359} 1404}
1360 1405
1361void 1406void
1540 else 1585 else
1541 { 1586 {
1542 once->cb = cb; 1587 once->cb = cb;
1543 once->arg = arg; 1588 once->arg = arg;
1544 1589
1545 ev_watcher_init (&once->io, once_cb_io); 1590 ev_init (&once->io, once_cb_io);
1546 if (fd >= 0) 1591 if (fd >= 0)
1547 { 1592 {
1548 ev_io_set (&once->io, fd, events); 1593 ev_io_set (&once->io, fd, events);
1549 ev_io_start (EV_A_ &once->io); 1594 ev_io_start (EV_A_ &once->io);
1550 } 1595 }
1551 1596
1552 ev_watcher_init (&once->to, once_cb_to); 1597 ev_init (&once->to, once_cb_to);
1553 if (timeout >= 0.) 1598 if (timeout >= 0.)
1554 { 1599 {
1555 ev_timer_set (&once->to, timeout, 0.); 1600 ev_timer_set (&once->to, timeout, 0.);
1556 ev_timer_start (EV_A_ &once->to); 1601 ev_timer_start (EV_A_ &once->to);
1557 } 1602 }
1558 } 1603 }
1559} 1604}
1560 1605
1606#ifdef __cplusplus
1607}
1608#endif
1609

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines