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

Comparing libev/ev.c (file contents):
Revision 1.144 by root, Tue Nov 27 08:11:52 2007 UTC vs.
Revision 1.151 by root, Tue Nov 27 19:59:08 2007 UTC

156 156
157#ifndef EV_USE_PORT 157#ifndef EV_USE_PORT
158# define EV_USE_PORT 0 158# define EV_USE_PORT 0
159#endif 159#endif
160 160
161#ifndef EV_PID_HASHSIZE
162# if EV_MINIMAL
163# define EV_PID_HASHSIZE 1
164# else
165# define EV_PID_HASHSIZE 16
166# endif
167#endif
168
161/**/ 169/**/
162 170
163#ifndef CLOCK_MONOTONIC 171#ifndef CLOCK_MONOTONIC
164# undef EV_USE_MONOTONIC 172# undef EV_USE_MONOTONIC
165# define EV_USE_MONOTONIC 0 173# define EV_USE_MONOTONIC 0
176 184
177/**/ 185/**/
178 186
179#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */ 187#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
180#define MAX_BLOCKTIME 59.743 /* never wait longer than this time (to detect time jumps) */ 188#define MAX_BLOCKTIME 59.743 /* never wait longer than this time (to detect time jumps) */
181#define PID_HASHSIZE 16 /* size of pid hash table, must be power of two */
182/*#define CLEANUP_INTERVAL (MAX_BLOCKTIME * 5.) /* how often to try to free memory and re-check fds */ 189/*#define CLEANUP_INTERVAL (MAX_BLOCKTIME * 5.) /* how often to try to free memory and re-check fds */
183 190
184#ifdef EV_H 191#ifdef EV_H
185# include EV_H 192# include EV_H
186#else 193#else
198# define inline_speed static inline 205# define inline_speed static inline
199# endif 206# endif
200#else 207#else
201# define expect(expr,value) (expr) 208# define expect(expr,value) (expr)
202# define inline_speed static 209# define inline_speed static
203# define inline_minimal static 210# define inline_size static
204# define noinline 211# define noinline
205#endif 212#endif
206 213
207#define expect_false(expr) expect ((expr) != 0, 0) 214#define expect_false(expr) expect ((expr) != 0, 0)
208#define expect_true(expr) expect ((expr) != 0, 1) 215#define expect_true(expr) expect ((expr) != 0, 1)
246 perror (msg); 253 perror (msg);
247 abort (); 254 abort ();
248 } 255 }
249} 256}
250 257
251static void *(*alloc)(void *ptr, long size); 258static void *(*alloc)(void *ptr, size_t size) = realloc;
252 259
253void 260void
254ev_set_allocator (void *(*cb)(void *ptr, long size)) 261ev_set_allocator (void *(*cb)(void *ptr, size_t size))
255{ 262{
256 alloc = cb; 263 alloc = cb;
257} 264}
258 265
259static void * 266inline_speed void *
260ev_realloc (void *ptr, long size) 267ev_realloc (void *ptr, size_t size)
261{ 268{
262 ptr = alloc ? alloc (ptr, size) : realloc (ptr, size); 269 ptr = alloc (ptr, size);
263 270
264 if (!ptr && size) 271 if (!ptr && size)
265 { 272 {
266 fprintf (stderr, "libev: cannot allocate %ld bytes, aborting.", size); 273 fprintf (stderr, "libev: cannot allocate %ld bytes, aborting.", (long)size);
267 abort (); 274 abort ();
268 } 275 }
269 276
270 return ptr; 277 return ptr;
271} 278}
709 ev_unref (EV_A); /* child watcher should not keep loop alive */ 716 ev_unref (EV_A); /* child watcher should not keep loop alive */
710} 717}
711 718
712/*****************************************************************************/ 719/*****************************************************************************/
713 720
714static ev_child *childs [PID_HASHSIZE]; 721static ev_child *childs [EV_PID_HASHSIZE];
715 722
716#ifndef _WIN32 723#ifndef _WIN32
717 724
718static ev_signal childev; 725static ev_signal childev;
719 726
720void inline_speed 727void inline_speed
721child_reap (EV_P_ ev_signal *sw, int chain, int pid, int status) 728child_reap (EV_P_ ev_signal *sw, int chain, int pid, int status)
722{ 729{
723 ev_child *w; 730 ev_child *w;
724 731
725 for (w = (ev_child *)childs [chain & (PID_HASHSIZE - 1)]; w; w = (ev_child *)((WL)w)->next) 732 for (w = (ev_child *)childs [chain & (EV_PID_HASHSIZE - 1)]; w; w = (ev_child *)((WL)w)->next)
726 if (w->pid == pid || !w->pid) 733 if (w->pid == pid || !w->pid)
727 { 734 {
728 ev_priority (w) = ev_priority (sw); /* need to do it *now* */ 735 ev_priority (w) = ev_priority (sw); /* need to do it *now* */
729 w->rpid = pid; 736 w->rpid = pid;
730 w->rstatus = status; 737 w->rstatus = status;
751 /* make sure we are called again until all childs have been reaped */ 758 /* make sure we are called again until all childs have been reaped */
752 /* we need to do it this way so that the callback gets called before we continue */ 759 /* we need to do it this way so that the callback gets called before we continue */
753 ev_feed_event (EV_A_ (W)sw, EV_SIGNAL); 760 ev_feed_event (EV_A_ (W)sw, EV_SIGNAL);
754 761
755 child_reap (EV_A_ sw, pid, pid, status); 762 child_reap (EV_A_ sw, pid, pid, status);
763 if (EV_PID_HASHSIZE > 1)
756 child_reap (EV_A_ sw, 0, pid, status); /* this might trigger a watcher twice, but feed_event catches that */ 764 child_reap (EV_A_ sw, 0, pid, status); /* this might trigger a watcher twice, but feed_event catches that */
757} 765}
758 766
759#endif 767#endif
760 768
761/*****************************************************************************/ 769/*****************************************************************************/
844ev_backend (EV_P) 852ev_backend (EV_P)
845{ 853{
846 return backend; 854 return backend;
847} 855}
848 856
849static void 857static void noinline
850loop_init (EV_P_ unsigned int flags) 858loop_init (EV_P_ unsigned int flags)
851{ 859{
852 if (!backend) 860 if (!backend)
853 { 861 {
854#if EV_USE_MONOTONIC 862#if EV_USE_MONOTONIC
892 ev_init (&sigev, sigcb); 900 ev_init (&sigev, sigcb);
893 ev_set_priority (&sigev, EV_MAXPRI); 901 ev_set_priority (&sigev, EV_MAXPRI);
894 } 902 }
895} 903}
896 904
897static void 905static void noinline
898loop_destroy (EV_P) 906loop_destroy (EV_P)
899{ 907{
900 int i; 908 int i;
901 909
902#if EV_USE_PORT 910#if EV_USE_PORT
929 array_free (check, EMPTY0); 937 array_free (check, EMPTY0);
930 938
931 backend = 0; 939 backend = 0;
932} 940}
933 941
934static void 942void inline_size
935loop_fork (EV_P) 943loop_fork (EV_P)
936{ 944{
937#if EV_USE_PORT 945#if EV_USE_PORT
938 if (backend == EVBACKEND_PORT ) port_fork (EV_A); 946 if (backend == EVBACKEND_PORT ) port_fork (EV_A);
939#endif 947#endif
1089 { 1097 {
1090 ANPENDING *p = pendings [pri] + --pendingcnt [pri]; 1098 ANPENDING *p = pendings [pri] + --pendingcnt [pri];
1091 1099
1092 if (expect_true (p->w)) 1100 if (expect_true (p->w))
1093 { 1101 {
1094 assert (("non-pending watcher on pending list", p->w->pending)); 1102 /*assert (("non-pending watcher on pending list", p->w->pending));*/
1095 1103
1096 p->w->pending = 0; 1104 p->w->pending = 0;
1097 EV_CB_INVOKE (p->w, p->events); 1105 EV_CB_INVOKE (p->w, p->events);
1098 } 1106 }
1099 } 1107 }
1104{ 1112{
1105 while (timercnt && ((WT)timers [0])->at <= mn_now) 1113 while (timercnt && ((WT)timers [0])->at <= mn_now)
1106 { 1114 {
1107 ev_timer *w = timers [0]; 1115 ev_timer *w = timers [0];
1108 1116
1109 assert (("inactive timer on timer heap detected", ev_is_active (w))); 1117 /*assert (("inactive timer on timer heap detected", ev_is_active (w)));*/
1110 1118
1111 /* first reschedule or stop timer */ 1119 /* first reschedule or stop timer */
1112 if (w->repeat) 1120 if (w->repeat)
1113 { 1121 {
1114 assert (("negative ev_timer repeat value found while processing timers", w->repeat > 0.)); 1122 assert (("negative ev_timer repeat value found while processing timers", w->repeat > 0.));
1132{ 1140{
1133 while (periodiccnt && ((WT)periodics [0])->at <= ev_rt_now) 1141 while (periodiccnt && ((WT)periodics [0])->at <= ev_rt_now)
1134 { 1142 {
1135 ev_periodic *w = periodics [0]; 1143 ev_periodic *w = periodics [0];
1136 1144
1137 assert (("inactive timer on periodic heap detected", ev_is_active (w))); 1145 /*assert (("inactive timer on periodic heap detected", ev_is_active (w)));*/
1138 1146
1139 /* first reschedule or stop timer */ 1147 /* first reschedule or stop timer */
1140 if (w->reschedule_cb) 1148 if (w->reschedule_cb)
1141 { 1149 {
1142 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now + 0.0001); 1150 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now + 0.0001);
1276 ? EVUNLOOP_ONE 1284 ? EVUNLOOP_ONE
1277 : EVUNLOOP_CANCEL; 1285 : EVUNLOOP_CANCEL;
1278 1286
1279 while (activecnt) 1287 while (activecnt)
1280 { 1288 {
1289 /* we might have forked, so reify kernel state if necessary */
1290 #if EV_FORK_ENABLE
1291 if (expect_false (postfork))
1292 if (forkcnt)
1293 {
1294 queue_events (EV_A_ (W *)forks, forkcnt, EV_FORK);
1295 call_pending (EV_A);
1296 }
1297 #endif
1298
1281 /* queue check watchers (and execute them) */ 1299 /* queue check watchers (and execute them) */
1282 if (expect_false (preparecnt)) 1300 if (expect_false (preparecnt))
1283 { 1301 {
1284 queue_events (EV_A_ (W *)prepares, preparecnt, EV_PREPARE); 1302 queue_events (EV_A_ (W *)prepares, preparecnt, EV_PREPARE);
1285 call_pending (EV_A); 1303 call_pending (EV_A);
1464 ev_start (EV_A_ (W)w, ++timercnt); 1482 ev_start (EV_A_ (W)w, ++timercnt);
1465 array_needsize (ev_timer *, timers, timermax, timercnt, EMPTY2); 1483 array_needsize (ev_timer *, timers, timermax, timercnt, EMPTY2);
1466 timers [timercnt - 1] = w; 1484 timers [timercnt - 1] = w;
1467 upheap ((WT *)timers, timercnt - 1); 1485 upheap ((WT *)timers, timercnt - 1);
1468 1486
1469 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w)); 1487 /*assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));*/
1470} 1488}
1471 1489
1472void 1490void
1473ev_timer_stop (EV_P_ ev_timer *w) 1491ev_timer_stop (EV_P_ ev_timer *w)
1474{ 1492{
1476 if (expect_false (!ev_is_active (w))) 1494 if (expect_false (!ev_is_active (w)))
1477 return; 1495 return;
1478 1496
1479 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w)); 1497 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));
1480 1498
1499 {
1500 int active = ((W)w)->active;
1501
1481 if (expect_true (((W)w)->active < timercnt--)) 1502 if (expect_true (--active < --timercnt))
1482 { 1503 {
1483 timers [((W)w)->active - 1] = timers [timercnt]; 1504 timers [active] = timers [timercnt];
1484 adjustheap ((WT *)timers, timercnt, ((W)w)->active - 1); 1505 adjustheap ((WT *)timers, timercnt, active);
1485 } 1506 }
1507 }
1486 1508
1487 ((WT)w)->at -= mn_now; 1509 ((WT)w)->at -= mn_now;
1488 1510
1489 ev_stop (EV_A_ (W)w); 1511 ev_stop (EV_A_ (W)w);
1490} 1512}
1528 ev_start (EV_A_ (W)w, ++periodiccnt); 1550 ev_start (EV_A_ (W)w, ++periodiccnt);
1529 array_needsize (ev_periodic *, periodics, periodicmax, periodiccnt, EMPTY2); 1551 array_needsize (ev_periodic *, periodics, periodicmax, periodiccnt, EMPTY2);
1530 periodics [periodiccnt - 1] = w; 1552 periodics [periodiccnt - 1] = w;
1531 upheap ((WT *)periodics, periodiccnt - 1); 1553 upheap ((WT *)periodics, periodiccnt - 1);
1532 1554
1533 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w)); 1555 /*assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));*/
1534} 1556}
1535 1557
1536void 1558void
1537ev_periodic_stop (EV_P_ ev_periodic *w) 1559ev_periodic_stop (EV_P_ ev_periodic *w)
1538{ 1560{
1540 if (expect_false (!ev_is_active (w))) 1562 if (expect_false (!ev_is_active (w)))
1541 return; 1563 return;
1542 1564
1543 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w)); 1565 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));
1544 1566
1567 {
1568 int active = ((W)w)->active;
1569
1545 if (expect_true (((W)w)->active < periodiccnt--)) 1570 if (expect_true (--active < --periodiccnt))
1546 { 1571 {
1547 periodics [((W)w)->active - 1] = periodics [periodiccnt]; 1572 periodics [active] = periodics [periodiccnt];
1548 adjustheap ((WT *)periodics, periodiccnt, ((W)w)->active - 1); 1573 adjustheap ((WT *)periodics, periodiccnt, active);
1549 } 1574 }
1575 }
1550 1576
1551 ev_stop (EV_A_ (W)w); 1577 ev_stop (EV_A_ (W)w);
1552} 1578}
1553 1579
1554void 1580void
1615#endif 1641#endif
1616 if (expect_false (ev_is_active (w))) 1642 if (expect_false (ev_is_active (w)))
1617 return; 1643 return;
1618 1644
1619 ev_start (EV_A_ (W)w, 1); 1645 ev_start (EV_A_ (W)w, 1);
1620 wlist_add ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w); 1646 wlist_add ((WL *)&childs [w->pid & (EV_PID_HASHSIZE - 1)], (WL)w);
1621} 1647}
1622 1648
1623void 1649void
1624ev_child_stop (EV_P_ ev_child *w) 1650ev_child_stop (EV_P_ ev_child *w)
1625{ 1651{
1626 ev_clear_pending (EV_A_ (W)w); 1652 ev_clear_pending (EV_A_ (W)w);
1627 if (expect_false (!ev_is_active (w))) 1653 if (expect_false (!ev_is_active (w)))
1628 return; 1654 return;
1629 1655
1630 wlist_del ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w); 1656 wlist_del ((WL *)&childs [w->pid & (EV_PID_HASHSIZE - 1)], (WL)w);
1631 ev_stop (EV_A_ (W)w); 1657 ev_stop (EV_A_ (W)w);
1632} 1658}
1633 1659
1634#if EV_STAT_ENABLE 1660#if EV_STAT_ENABLE
1635 1661
1636# ifdef _WIN32 1662# ifdef _WIN32
1663# undef lstat
1637# define lstat(a,b) stat(a,b) 1664# define lstat(a,b) _stati64 (a,b)
1638# endif 1665# endif
1639 1666
1640#define DEF_STAT_INTERVAL 5.0074891 1667#define DEF_STAT_INTERVAL 5.0074891
1641#define MIN_STAT_INTERVAL 0.1074891 1668#define MIN_STAT_INTERVAL 0.1074891
1642 1669
1826 1853
1827 ev_stop (EV_A_ (W)w); 1854 ev_stop (EV_A_ (W)w);
1828} 1855}
1829#endif 1856#endif
1830 1857
1858#if EV_FORK_ENABLE
1859void
1860ev_fork_start (EV_P_ ev_fork *w)
1861{
1862 if (expect_false (ev_is_active (w)))
1863 return;
1864
1865 ev_start (EV_A_ (W)w, ++forkcnt);
1866 array_needsize (ev_fork *, forks, forkmax, forkcnt, EMPTY2);
1867 forks [forkcnt - 1] = w;
1868}
1869
1870void
1871ev_fork_stop (EV_P_ ev_fork *w)
1872{
1873 ev_clear_pending (EV_A_ (W)w);
1874 if (expect_false (!ev_is_active (w)))
1875 return;
1876
1877 {
1878 int active = ((W)w)->active;
1879 forks [active - 1] = forks [--forkcnt];
1880 ((W)forks [active - 1])->active = active;
1881 }
1882
1883 ev_stop (EV_A_ (W)w);
1884}
1885#endif
1886
1831/*****************************************************************************/ 1887/*****************************************************************************/
1832 1888
1833struct ev_once 1889struct ev_once
1834{ 1890{
1835 ev_io io; 1891 ev_io io;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines