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

Comparing libev/ev.c (file contents):
Revision 1.373 by root, Sun Feb 20 02:56:23 2011 UTC vs.
Revision 1.390 by root, Thu Aug 4 11:58:02 2011 UTC

464#define MAX_BLOCKTIME 59.743 /* never wait longer than this time (to detect time jumps) */ 464#define MAX_BLOCKTIME 59.743 /* never wait longer than this time (to detect time jumps) */
465 465
466#define EV_TV_SET(tv,t) do { tv.tv_sec = (long)t; tv.tv_usec = (long)((t - tv.tv_sec) * 1e6); } while (0) 466#define EV_TV_SET(tv,t) do { tv.tv_sec = (long)t; tv.tv_usec = (long)((t - tv.tv_sec) * 1e6); } while (0)
467#define EV_TS_SET(ts,t) do { ts.tv_sec = (long)t; ts.tv_nsec = (long)((t - ts.tv_sec) * 1e9); } while (0) 467#define EV_TS_SET(ts,t) do { ts.tv_sec = (long)t; ts.tv_nsec = (long)((t - ts.tv_sec) * 1e9); } while (0)
468 468
469#if __GNUC__ >= 4 469/* the following are taken from libecb */
470# define expect(expr,value) __builtin_expect ((expr),(value)) 470/* ecb.h start */
471# define noinline __attribute__ ((noinline)) 471
472/* many compilers define _GNUC_ to some versions but then only implement
473 * what their idiot authors think are the "more important" extensions,
474 * causing enourmous grief in return for some better fake benchmark numbers.
475 * or so.
476 * we try to detect these and simply assume they are not gcc - if they have
477 * an issue with that they should have done it right in the first place.
478 */
479#ifndef ECB_GCC_VERSION
480 #if !defined(__GNUC_MINOR__) || defined(__INTEL_COMPILER) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) || defined(__llvm__) || defined(__clang__)
481 #define ECB_GCC_VERSION(major,minor) 0
482 #else
483 #define ECB_GCC_VERSION(major,minor) (__GNUC__ > (major) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
484 #endif
485#endif
486
487#if __cplusplus
488 #define ecb_inline static inline
489#elif ECB_GCC_VERSION(2,5)
490 #define ecb_inline static __inline__
491#elif ECB_C99
492 #define ecb_inline static inline
472#else 493#else
473# define expect(expr,value) (expr) 494 #define ecb_inline static
474# define noinline
475# if __STDC_VERSION__ < 199901L && __GNUC__ < 2
476# define inline
477# endif 495#endif
496
497#ifndef ECB_MEMORY_FENCE
498 #if ECB_GCC_VERSION(2,5)
499 #if __x86
500 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("lock; orb $0, -1(%%esp)" : : : "memory")
501 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE
502 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE /* better be safe than sorry */
503 #elif __amd64
504 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mfence" : : : "memory")
505 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("lfence" : : : "memory")
506 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("sfence")
507 #endif
478#endif 508 #endif
509#endif
479 510
511#ifndef ECB_MEMORY_FENCE
512 #if ECB_GCC_VERSION(4,4)
513 #define ECB_MEMORY_FENCE __sync_synchronize ()
514 #define ECB_MEMORY_FENCE_ACQUIRE ({ char dummy = 0; __sync_lock_test_and_set (&dummy, 1); })
515 #define ECB_MEMORY_FENCE_RELEASE ({ char dummy = 1; __sync_lock_release (&dummy ); })
516 #elif _MSC_VER >= 1400 /* VC++ 2005 */
517 #pragma intrinsic(_ReadBarrier,_WriteBarrier,_ReadWriteBarrier)
518 #define ECB_MEMORY_FENCE _ReadWriteBarrier ()
519 #define ECB_MEMORY_FENCE_ACQUIRE _ReadWriteBarrier () /* according to msdn, _ReadBarrier is not a load fence */
520 #define ECB_MEMORY_FENCE_RELEASE _WriteBarrier ()
521 #elif defined(_WIN32)
522 #include <WinNT.h>
523 #define ECB_MEMORY_FENCE MemoryBarrier ()
524 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE
525 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE
526 #endif
527#endif
528
529#ifndef ECB_MEMORY_FENCE
530 #include <pthread.h>
531
532 static pthread_mutex_t ecb_mf_lock = PTHREAD_MUTEX_INITIALIZER;
533 #define ECB_MEMORY_FENCE do { pthread_mutex_lock (&ecb_mf_lock); pthread_mutex_unlock (&ecb_mf_lock); } while (0)
534 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE
535 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE
536#endif
537
538#if ECB_GCC_VERSION(3,1)
539 #define ecb_attribute(attrlist) __attribute__(attrlist)
540 #define ecb_is_constant(expr) __builtin_constant_p (expr)
541 #define ecb_expect(expr,value) __builtin_expect ((expr),(value))
542 #define ecb_prefetch(addr,rw,locality) __builtin_prefetch (addr, rw, locality)
543#else
544 #define ecb_attribute(attrlist)
545 #define ecb_is_constant(expr) 0
546 #define ecb_expect(expr,value) (expr)
547 #define ecb_prefetch(addr,rw,locality)
548#endif
549
550#define ecb_noinline ecb_attribute ((__noinline__))
551#define ecb_noreturn ecb_attribute ((__noreturn__))
552#define ecb_unused ecb_attribute ((__unused__))
553#define ecb_const ecb_attribute ((__const__))
554#define ecb_pure ecb_attribute ((__pure__))
555
556#if ECB_GCC_VERSION(4,3)
557 #define ecb_artificial ecb_attribute ((__artificial__))
558 #define ecb_hot ecb_attribute ((__hot__))
559 #define ecb_cold ecb_attribute ((__cold__))
560#else
561 #define ecb_artificial
562 #define ecb_hot
563 #define ecb_cold
564#endif
565
566/* put around conditional expressions if you are very sure that the */
567/* expression is mostly true or mostly false. note that these return */
568/* booleans, not the expression. */
480#define expect_false(expr) expect ((expr) != 0, 0) 569#define ecb_expect_false(expr) ecb_expect (!!(expr), 0)
481#define expect_true(expr) expect ((expr) != 0, 1) 570#define ecb_expect_true(expr) ecb_expect (!!(expr), 1)
571/* ecb.h end */
572
573#define expect_false(cond) ecb_expect_false (cond)
574#define expect_true(cond) ecb_expect_true (cond)
575#define noinline ecb_noinline
576
482#define inline_size static inline 577#define inline_size ecb_inline
483 578
484#if EV_FEATURE_CODE 579#if EV_FEATURE_CODE
485# define inline_speed static inline 580# define inline_speed ecb_inline
486#else 581#else
487# define inline_speed static noinline 582# define inline_speed static noinline
488#endif 583#endif
489 584
490#define NUMPRI (EV_MAXPRI - EV_MINPRI + 1) 585#define NUMPRI (EV_MAXPRI - EV_MINPRI + 1)
581 676
582#ifdef __linux 677#ifdef __linux
583# include <sys/utsname.h> 678# include <sys/utsname.h>
584#endif 679#endif
585 680
586static unsigned int noinline 681static unsigned int noinline ecb_cold
587ev_linux_version (void) 682ev_linux_version (void)
588{ 683{
589#ifdef __linux 684#ifdef __linux
590 unsigned int v = 0; 685 unsigned int v = 0;
591 struct utsname buf; 686 struct utsname buf;
620} 715}
621 716
622/*****************************************************************************/ 717/*****************************************************************************/
623 718
624#if EV_AVOID_STDIO 719#if EV_AVOID_STDIO
625static void noinline 720static void noinline ecb_cold
626ev_printerr (const char *msg) 721ev_printerr (const char *msg)
627{ 722{
628 write (STDERR_FILENO, msg, strlen (msg)); 723 write (STDERR_FILENO, msg, strlen (msg));
629} 724}
630#endif 725#endif
631 726
632static void (*syserr_cb)(const char *msg); 727static void (*syserr_cb)(const char *msg);
633 728
634void 729void ecb_cold
635ev_set_syserr_cb (void (*cb)(const char *msg)) 730ev_set_syserr_cb (void (*cb)(const char *msg))
636{ 731{
637 syserr_cb = cb; 732 syserr_cb = cb;
638} 733}
639 734
640static void noinline 735static void noinline ecb_cold
641ev_syserr (const char *msg) 736ev_syserr (const char *msg)
642{ 737{
643 if (!msg) 738 if (!msg)
644 msg = "(libev) system error"; 739 msg = "(libev) system error";
645 740
678#endif 773#endif
679} 774}
680 775
681static void *(*alloc)(void *ptr, long size) = ev_realloc_emul; 776static void *(*alloc)(void *ptr, long size) = ev_realloc_emul;
682 777
683void 778void ecb_cold
684ev_set_allocator (void *(*cb)(void *ptr, long size)) 779ev_set_allocator (void *(*cb)(void *ptr, long size))
685{ 780{
686 alloc = cb; 781 alloc = cb;
687} 782}
688 783
870 select (0, 0, 0, 0, &tv); 965 select (0, 0, 0, 0, &tv);
871#endif 966#endif
872 } 967 }
873} 968}
874 969
875inline_speed int
876ev_timeout_to_ms (ev_tstamp timeout)
877{
878 int ms = timeout * 1000. + .999999;
879
880 return expect_true (ms) ? ms : timeout < 1e-6 ? 0 : 1;
881}
882
883/*****************************************************************************/ 970/*****************************************************************************/
884 971
885#define MALLOC_ROUND 4096 /* prefer to allocate in chunks of this size, must be 2**n and >> 4 longs */ 972#define MALLOC_ROUND 4096 /* prefer to allocate in chunks of this size, must be 2**n and >> 4 longs */
886 973
887/* find a suitable new size for the given array, */ 974/* find a suitable new size for the given array, */
905 } 992 }
906 993
907 return ncur; 994 return ncur;
908} 995}
909 996
910static noinline void * 997static void * noinline ecb_cold
911array_realloc (int elem, void *base, int *cur, int cnt) 998array_realloc (int elem, void *base, int *cur, int cnt)
912{ 999{
913 *cur = array_nextsize (elem, *cur, cnt); 1000 *cur = array_nextsize (elem, *cur, cnt);
914 return ev_realloc (base, elem * *cur); 1001 return ev_realloc (base, elem * *cur);
915} 1002}
918 memset ((void *)(base), 0, sizeof (*(base)) * (count)) 1005 memset ((void *)(base), 0, sizeof (*(base)) * (count))
919 1006
920#define array_needsize(type,base,cur,cnt,init) \ 1007#define array_needsize(type,base,cur,cnt,init) \
921 if (expect_false ((cnt) > (cur))) \ 1008 if (expect_false ((cnt) > (cur))) \
922 { \ 1009 { \
923 int ocur_ = (cur); \ 1010 int ecb_unused ocur_ = (cur); \
924 (base) = (type *)array_realloc \ 1011 (base) = (type *)array_realloc \
925 (sizeof (type), (base), &(cur), (cnt)); \ 1012 (sizeof (type), (base), &(cur), (cnt)); \
926 init ((base) + (ocur_), (cur) - ocur_); \ 1013 init ((base) + (ocur_), (cur) - ocur_); \
927 } 1014 }
928 1015
1034 for (i = 0; i < fdchangecnt; ++i) 1121 for (i = 0; i < fdchangecnt; ++i)
1035 { 1122 {
1036 int fd = fdchanges [i]; 1123 int fd = fdchanges [i];
1037 ANFD *anfd = anfds + fd; 1124 ANFD *anfd = anfds + fd;
1038 1125
1039 if (anfd->reify & EV__IOFDSET) 1126 if (anfd->reify & EV__IOFDSET && anfd->head)
1040 { 1127 {
1041 SOCKET handle = EV_FD_TO_WIN32_HANDLE (fd); 1128 SOCKET handle = EV_FD_TO_WIN32_HANDLE (fd);
1042 1129
1043 if (handle != anfd->handle) 1130 if (handle != anfd->handle)
1044 { 1131 {
1098 fdchanges [fdchangecnt - 1] = fd; 1185 fdchanges [fdchangecnt - 1] = fd;
1099 } 1186 }
1100} 1187}
1101 1188
1102/* the given fd is invalid/unusable, so make sure it doesn't hurt us anymore */ 1189/* the given fd is invalid/unusable, so make sure it doesn't hurt us anymore */
1103inline_speed void 1190inline_speed void ecb_cold
1104fd_kill (EV_P_ int fd) 1191fd_kill (EV_P_ int fd)
1105{ 1192{
1106 ev_io *w; 1193 ev_io *w;
1107 1194
1108 while ((w = (ev_io *)anfds [fd].head)) 1195 while ((w = (ev_io *)anfds [fd].head))
1111 ev_feed_event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE); 1198 ev_feed_event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE);
1112 } 1199 }
1113} 1200}
1114 1201
1115/* check whether the given fd is actually valid, for error recovery */ 1202/* check whether the given fd is actually valid, for error recovery */
1116inline_size int 1203inline_size int ecb_cold
1117fd_valid (int fd) 1204fd_valid (int fd)
1118{ 1205{
1119#ifdef _WIN32 1206#ifdef _WIN32
1120 return EV_FD_TO_WIN32_HANDLE (fd) != -1; 1207 return EV_FD_TO_WIN32_HANDLE (fd) != -1;
1121#else 1208#else
1122 return fcntl (fd, F_GETFD) != -1; 1209 return fcntl (fd, F_GETFD) != -1;
1123#endif 1210#endif
1124} 1211}
1125 1212
1126/* called on EBADF to verify fds */ 1213/* called on EBADF to verify fds */
1127static void noinline 1214static void noinline ecb_cold
1128fd_ebadf (EV_P) 1215fd_ebadf (EV_P)
1129{ 1216{
1130 int fd; 1217 int fd;
1131 1218
1132 for (fd = 0; fd < anfdmax; ++fd) 1219 for (fd = 0; fd < anfdmax; ++fd)
1134 if (!fd_valid (fd) && errno == EBADF) 1221 if (!fd_valid (fd) && errno == EBADF)
1135 fd_kill (EV_A_ fd); 1222 fd_kill (EV_A_ fd);
1136} 1223}
1137 1224
1138/* called on ENOMEM in select/poll to kill some fds and retry */ 1225/* called on ENOMEM in select/poll to kill some fds and retry */
1139static void noinline 1226static void noinline ecb_cold
1140fd_enomem (EV_P) 1227fd_enomem (EV_P)
1141{ 1228{
1142 int fd; 1229 int fd;
1143 1230
1144 for (fd = anfdmax; fd--; ) 1231 for (fd = anfdmax; fd--; )
1339 1426
1340/*****************************************************************************/ 1427/*****************************************************************************/
1341 1428
1342#if EV_SIGNAL_ENABLE || EV_ASYNC_ENABLE 1429#if EV_SIGNAL_ENABLE || EV_ASYNC_ENABLE
1343 1430
1344static void noinline 1431static void noinline ecb_cold
1345evpipe_init (EV_P) 1432evpipe_init (EV_P)
1346{ 1433{
1347 if (!ev_is_active (&pipe_w)) 1434 if (!ev_is_active (&pipe_w))
1348 { 1435 {
1349# if EV_USE_EVENTFD 1436# if EV_USE_EVENTFD
1371 ev_io_start (EV_A_ &pipe_w); 1458 ev_io_start (EV_A_ &pipe_w);
1372 ev_unref (EV_A); /* watcher should not keep loop alive */ 1459 ev_unref (EV_A); /* watcher should not keep loop alive */
1373 } 1460 }
1374} 1461}
1375 1462
1376inline_size void 1463inline_speed void
1377evpipe_write (EV_P_ EV_ATOMIC_T *flag) 1464evpipe_write (EV_P_ EV_ATOMIC_T *flag)
1378{ 1465{
1379 if (!*flag) 1466 if (expect_true (*flag))
1467 return;
1468
1469 *flag = 1;
1470
1471 ECB_MEMORY_FENCE_RELEASE; /* make sure flag is visible before the wakeup */
1472
1473 pipe_write_skipped = 1;
1474
1475 ECB_MEMORY_FENCE; /* make sure pipe_write_skipped is visible before we check pipe_write_wanted */
1476
1477 if (pipe_write_wanted)
1380 { 1478 {
1479 int old_errno;
1480
1481 pipe_write_skipped = 0; /* just an optimsiation, no fence needed */
1482
1381 int old_errno = errno; /* save errno because write might clobber it */ 1483 old_errno = errno; /* save errno because write will clobber it */
1382 char dummy;
1383
1384 *flag = 1;
1385 1484
1386#if EV_USE_EVENTFD 1485#if EV_USE_EVENTFD
1387 if (evfd >= 0) 1486 if (evfd >= 0)
1388 { 1487 {
1389 uint64_t counter = 1; 1488 uint64_t counter = 1;
1390 write (evfd, &counter, sizeof (uint64_t)); 1489 write (evfd, &counter, sizeof (uint64_t));
1391 } 1490 }
1392 else 1491 else
1393#endif 1492#endif
1493 {
1394 /* win32 people keep sending patches that change this write() to send() */ 1494 /* win32 people keep sending patches that change this write() to send() */
1395 /* and then run away. but send() is wrong, it wants a socket handle on win32 */ 1495 /* and then run away. but send() is wrong, it wants a socket handle on win32 */
1396 /* so when you think this write should be a send instead, please find out */ 1496 /* so when you think this write should be a send instead, please find out */
1397 /* where your send() is from - it's definitely not the microsoft send, and */ 1497 /* where your send() is from - it's definitely not the microsoft send, and */
1398 /* tell me. thank you. */ 1498 /* tell me. thank you. */
1399 write (evpipe [1], &dummy, 1); 1499 write (evpipe [1], &(evpipe [1]), 1);
1500 }
1400 1501
1401 errno = old_errno; 1502 errno = old_errno;
1402 } 1503 }
1403} 1504}
1404 1505
1407static void 1508static void
1408pipecb (EV_P_ ev_io *iow, int revents) 1509pipecb (EV_P_ ev_io *iow, int revents)
1409{ 1510{
1410 int i; 1511 int i;
1411 1512
1513 if (revents & EV_READ)
1514 {
1412#if EV_USE_EVENTFD 1515#if EV_USE_EVENTFD
1413 if (evfd >= 0) 1516 if (evfd >= 0)
1414 { 1517 {
1415 uint64_t counter; 1518 uint64_t counter;
1416 read (evfd, &counter, sizeof (uint64_t)); 1519 read (evfd, &counter, sizeof (uint64_t));
1417 } 1520 }
1418 else 1521 else
1419#endif 1522#endif
1420 { 1523 {
1421 char dummy; 1524 char dummy;
1422 /* see discussion in evpipe_write when you think this read should be recv in win32 */ 1525 /* see discussion in evpipe_write when you think this read should be recv in win32 */
1423 read (evpipe [0], &dummy, 1); 1526 read (evpipe [0], &dummy, 1);
1527 }
1424 } 1528 }
1529
1530 pipe_write_skipped = 0;
1425 1531
1426#if EV_SIGNAL_ENABLE 1532#if EV_SIGNAL_ENABLE
1427 if (sig_pending) 1533 if (sig_pending)
1428 { 1534 {
1429 sig_pending = 0; 1535 sig_pending = 0;
1458 EV_P = signals [signum - 1].loop; 1564 EV_P = signals [signum - 1].loop;
1459 1565
1460 if (!EV_A) 1566 if (!EV_A)
1461 return; 1567 return;
1462#endif 1568#endif
1569
1570 if (!ev_active (&pipe_w))
1571 return;
1463 1572
1464 signals [signum - 1].pending = 1; 1573 signals [signum - 1].pending = 1;
1465 evpipe_write (EV_A_ &sig_pending); 1574 evpipe_write (EV_A_ &sig_pending);
1466} 1575}
1467 1576
1599#endif 1708#endif
1600#if EV_USE_SELECT 1709#if EV_USE_SELECT
1601# include "ev_select.c" 1710# include "ev_select.c"
1602#endif 1711#endif
1603 1712
1604int 1713int ecb_cold
1605ev_version_major (void) 1714ev_version_major (void)
1606{ 1715{
1607 return EV_VERSION_MAJOR; 1716 return EV_VERSION_MAJOR;
1608} 1717}
1609 1718
1610int 1719int ecb_cold
1611ev_version_minor (void) 1720ev_version_minor (void)
1612{ 1721{
1613 return EV_VERSION_MINOR; 1722 return EV_VERSION_MINOR;
1614} 1723}
1615 1724
1616/* return true if we are running with elevated privileges and should ignore env variables */ 1725/* return true if we are running with elevated privileges and should ignore env variables */
1617int inline_size 1726int inline_size ecb_cold
1618enable_secure (void) 1727enable_secure (void)
1619{ 1728{
1620#ifdef _WIN32 1729#ifdef _WIN32
1621 return 0; 1730 return 0;
1622#else 1731#else
1623 return getuid () != geteuid () 1732 return getuid () != geteuid ()
1624 || getgid () != getegid (); 1733 || getgid () != getegid ();
1625#endif 1734#endif
1626} 1735}
1627 1736
1628unsigned int 1737unsigned int ecb_cold
1629ev_supported_backends (void) 1738ev_supported_backends (void)
1630{ 1739{
1631 unsigned int flags = 0; 1740 unsigned int flags = 0;
1632 1741
1633 if (EV_USE_PORT ) flags |= EVBACKEND_PORT; 1742 if (EV_USE_PORT ) flags |= EVBACKEND_PORT;
1637 if (EV_USE_SELECT) flags |= EVBACKEND_SELECT; 1746 if (EV_USE_SELECT) flags |= EVBACKEND_SELECT;
1638 1747
1639 return flags; 1748 return flags;
1640} 1749}
1641 1750
1642unsigned int 1751unsigned int ecb_cold
1643ev_recommended_backends (void) 1752ev_recommended_backends (void)
1644{ 1753{
1645 unsigned int flags = ev_supported_backends (); 1754 unsigned int flags = ev_supported_backends ();
1646 1755
1647#ifndef __NetBSD__ 1756#ifndef __NetBSD__
1659#endif 1768#endif
1660 1769
1661 return flags; 1770 return flags;
1662} 1771}
1663 1772
1664unsigned int 1773unsigned int ecb_cold
1665ev_embeddable_backends (void) 1774ev_embeddable_backends (void)
1666{ 1775{
1667 int flags = EVBACKEND_EPOLL | EVBACKEND_KQUEUE | EVBACKEND_PORT; 1776 int flags = EVBACKEND_EPOLL | EVBACKEND_KQUEUE | EVBACKEND_PORT;
1668 1777
1669 /* epoll embeddability broken on all linux versions up to at least 2.6.23 */ 1778 /* epoll embeddability broken on all linux versions up to at least 2.6.23 */
1714ev_userdata (EV_P) 1823ev_userdata (EV_P)
1715{ 1824{
1716 return userdata; 1825 return userdata;
1717} 1826}
1718 1827
1828void
1719void ev_set_invoke_pending_cb (EV_P_ void (*invoke_pending_cb)(EV_P)) 1829ev_set_invoke_pending_cb (EV_P_ void (*invoke_pending_cb)(EV_P))
1720{ 1830{
1721 invoke_cb = invoke_pending_cb; 1831 invoke_cb = invoke_pending_cb;
1722} 1832}
1723 1833
1834void
1724void ev_set_loop_release_cb (EV_P_ void (*release)(EV_P), void (*acquire)(EV_P)) 1835ev_set_loop_release_cb (EV_P_ void (*release)(EV_P), void (*acquire)(EV_P))
1725{ 1836{
1726 release_cb = release; 1837 release_cb = release;
1727 acquire_cb = acquire; 1838 acquire_cb = acquire;
1728} 1839}
1729#endif 1840#endif
1730 1841
1731/* initialise a loop structure, must be zero-initialised */ 1842/* initialise a loop structure, must be zero-initialised */
1732static void noinline 1843static void noinline ecb_cold
1733loop_init (EV_P_ unsigned int flags) 1844loop_init (EV_P_ unsigned int flags)
1734{ 1845{
1735 if (!backend) 1846 if (!backend)
1736 { 1847 {
1737 origflags = flags; 1848 origflags = flags;
1765 if (!(flags & EVFLAG_NOENV) 1876 if (!(flags & EVFLAG_NOENV)
1766 && !enable_secure () 1877 && !enable_secure ()
1767 && getenv ("LIBEV_FLAGS")) 1878 && getenv ("LIBEV_FLAGS"))
1768 flags = atoi (getenv ("LIBEV_FLAGS")); 1879 flags = atoi (getenv ("LIBEV_FLAGS"));
1769 1880
1770 ev_rt_now = ev_time (); 1881 ev_rt_now = ev_time ();
1771 mn_now = get_clock (); 1882 mn_now = get_clock ();
1772 now_floor = mn_now; 1883 now_floor = mn_now;
1773 rtmn_diff = ev_rt_now - mn_now; 1884 rtmn_diff = ev_rt_now - mn_now;
1774#if EV_FEATURE_API 1885#if EV_FEATURE_API
1775 invoke_cb = ev_invoke_pending; 1886 invoke_cb = ev_invoke_pending;
1776#endif 1887#endif
1777 1888
1778 io_blocktime = 0.; 1889 io_blocktime = 0.;
1779 timeout_blocktime = 0.; 1890 timeout_blocktime = 0.;
1780 backend = 0; 1891 backend = 0;
1781 backend_fd = -1; 1892 backend_fd = -1;
1782 sig_pending = 0; 1893 sig_pending = 0;
1783#if EV_ASYNC_ENABLE 1894#if EV_ASYNC_ENABLE
1784 async_pending = 0; 1895 async_pending = 0;
1785#endif 1896#endif
1897 pipe_write_skipped = 0;
1898 pipe_write_wanted = 0;
1786#if EV_USE_INOTIFY 1899#if EV_USE_INOTIFY
1787 fs_fd = flags & EVFLAG_NOINOTIFY ? -1 : -2; 1900 fs_fd = flags & EVFLAG_NOINOTIFY ? -1 : -2;
1788#endif 1901#endif
1789#if EV_USE_SIGNALFD 1902#if EV_USE_SIGNALFD
1790 sigfd = flags & EVFLAG_SIGNALFD ? -2 : -1; 1903 sigfd = flags & EVFLAG_SIGNALFD ? -2 : -1;
1791#endif 1904#endif
1792 1905
1793 if (!(flags & EVBACKEND_MASK)) 1906 if (!(flags & EVBACKEND_MASK))
1794 flags |= ev_recommended_backends (); 1907 flags |= ev_recommended_backends ();
1795 1908
1820#endif 1933#endif
1821 } 1934 }
1822} 1935}
1823 1936
1824/* free up a loop structure */ 1937/* free up a loop structure */
1825void 1938void ecb_cold
1826ev_loop_destroy (EV_P) 1939ev_loop_destroy (EV_P)
1827{ 1940{
1828 int i; 1941 int i;
1829 1942
1830#if EV_MULTIPLICITY 1943#if EV_MULTIPLICITY
1960 infy_fork (EV_A); 2073 infy_fork (EV_A);
1961#endif 2074#endif
1962 2075
1963 if (ev_is_active (&pipe_w)) 2076 if (ev_is_active (&pipe_w))
1964 { 2077 {
1965 /* this "locks" the handlers against writing to the pipe */ 2078 /* pipe_write_wanted must be false now, so modifying fd vars should be safe */
1966 /* while we modify the fd vars */
1967 sig_pending = 1;
1968#if EV_ASYNC_ENABLE
1969 async_pending = 1;
1970#endif
1971 2079
1972 ev_ref (EV_A); 2080 ev_ref (EV_A);
1973 ev_io_stop (EV_A_ &pipe_w); 2081 ev_io_stop (EV_A_ &pipe_w);
1974 2082
1975#if EV_USE_EVENTFD 2083#if EV_USE_EVENTFD
1993 postfork = 0; 2101 postfork = 0;
1994} 2102}
1995 2103
1996#if EV_MULTIPLICITY 2104#if EV_MULTIPLICITY
1997 2105
1998struct ev_loop * 2106struct ev_loop * ecb_cold
1999ev_loop_new (unsigned int flags) 2107ev_loop_new (unsigned int flags)
2000{ 2108{
2001 EV_P = (struct ev_loop *)ev_malloc (sizeof (struct ev_loop)); 2109 EV_P = (struct ev_loop *)ev_malloc (sizeof (struct ev_loop));
2002 2110
2003 memset (EV_A, 0, sizeof (struct ev_loop)); 2111 memset (EV_A, 0, sizeof (struct ev_loop));
2011} 2119}
2012 2120
2013#endif /* multiplicity */ 2121#endif /* multiplicity */
2014 2122
2015#if EV_VERIFY 2123#if EV_VERIFY
2016static void noinline 2124static void noinline ecb_cold
2017verify_watcher (EV_P_ W w) 2125verify_watcher (EV_P_ W w)
2018{ 2126{
2019 assert (("libev: watcher has invalid priority", ABSPRI (w) >= 0 && ABSPRI (w) < NUMPRI)); 2127 assert (("libev: watcher has invalid priority", ABSPRI (w) >= 0 && ABSPRI (w) < NUMPRI));
2020 2128
2021 if (w->pending) 2129 if (w->pending)
2022 assert (("libev: pending watcher not on pending queue", pendings [ABSPRI (w)][w->pending - 1].w == w)); 2130 assert (("libev: pending watcher not on pending queue", pendings [ABSPRI (w)][w->pending - 1].w == w));
2023} 2131}
2024 2132
2025static void noinline 2133static void noinline ecb_cold
2026verify_heap (EV_P_ ANHE *heap, int N) 2134verify_heap (EV_P_ ANHE *heap, int N)
2027{ 2135{
2028 int i; 2136 int i;
2029 2137
2030 for (i = HEAP0; i < N + HEAP0; ++i) 2138 for (i = HEAP0; i < N + HEAP0; ++i)
2035 2143
2036 verify_watcher (EV_A_ (W)ANHE_w (heap [i])); 2144 verify_watcher (EV_A_ (W)ANHE_w (heap [i]));
2037 } 2145 }
2038} 2146}
2039 2147
2040static void noinline 2148static void noinline ecb_cold
2041array_verify (EV_P_ W *ws, int cnt) 2149array_verify (EV_P_ W *ws, int cnt)
2042{ 2150{
2043 while (cnt--) 2151 while (cnt--)
2044 { 2152 {
2045 assert (("libev: active index mismatch", ev_active (ws [cnt]) == cnt + 1)); 2153 assert (("libev: active index mismatch", ev_active (ws [cnt]) == cnt + 1));
2047 } 2155 }
2048} 2156}
2049#endif 2157#endif
2050 2158
2051#if EV_FEATURE_API 2159#if EV_FEATURE_API
2052void 2160void ecb_cold
2053ev_verify (EV_P) 2161ev_verify (EV_P)
2054{ 2162{
2055#if EV_VERIFY 2163#if EV_VERIFY
2056 int i; 2164 int i;
2057 WL w; 2165 WL w;
2123#endif 2231#endif
2124} 2232}
2125#endif 2233#endif
2126 2234
2127#if EV_MULTIPLICITY 2235#if EV_MULTIPLICITY
2128struct ev_loop * 2236struct ev_loop * ecb_cold
2129#else 2237#else
2130int 2238int
2131#endif 2239#endif
2132ev_default_loop (unsigned int flags) 2240ev_default_loop (unsigned int flags)
2133{ 2241{
2332 } 2440 }
2333} 2441}
2334 2442
2335/* simply recalculate all periodics */ 2443/* simply recalculate all periodics */
2336/* TODO: maybe ensure that at least one event happens when jumping forward? */ 2444/* TODO: maybe ensure that at least one event happens when jumping forward? */
2337static void noinline 2445static void noinline ecb_cold
2338periodics_reschedule (EV_P) 2446periodics_reschedule (EV_P)
2339{ 2447{
2340 int i; 2448 int i;
2341 2449
2342 /* adjust periodics after time jump */ 2450 /* adjust periodics after time jump */
2355 reheap (periodics, periodiccnt); 2463 reheap (periodics, periodiccnt);
2356} 2464}
2357#endif 2465#endif
2358 2466
2359/* adjust all timers by a given offset */ 2467/* adjust all timers by a given offset */
2360static void noinline 2468static void noinline ecb_cold
2361timers_reschedule (EV_P_ ev_tstamp adjust) 2469timers_reschedule (EV_P_ ev_tstamp adjust)
2362{ 2470{
2363 int i; 2471 int i;
2364 2472
2365 for (i = 0; i < timercnt; ++i) 2473 for (i = 0; i < timercnt; ++i)
2507 ev_tstamp prev_mn_now = mn_now; 2615 ev_tstamp prev_mn_now = mn_now;
2508 2616
2509 /* update time to cancel out callback processing overhead */ 2617 /* update time to cancel out callback processing overhead */
2510 time_update (EV_A_ 1e100); 2618 time_update (EV_A_ 1e100);
2511 2619
2620 /* from now on, we want a pipe-wake-up */
2621 pipe_write_wanted = 1;
2622
2623 ECB_MEMORY_FENCE; /* make sure pipe_write_wanted is visible before we check for potential skips */
2624
2512 if (expect_true (!(flags & EVRUN_NOWAIT || idleall || !activecnt))) 2625 if (expect_true (!(flags & EVRUN_NOWAIT || idleall || !activecnt || pipe_write_skipped)))
2513 { 2626 {
2514 waittime = MAX_BLOCKTIME; 2627 waittime = MAX_BLOCKTIME;
2515 2628
2516 if (timercnt) 2629 if (timercnt)
2517 { 2630 {
2518 ev_tstamp to = ANHE_at (timers [HEAP0]) - mn_now + backend_fudge; 2631 ev_tstamp to = ANHE_at (timers [HEAP0]) - mn_now;
2519 if (waittime > to) waittime = to; 2632 if (waittime > to) waittime = to;
2520 } 2633 }
2521 2634
2522#if EV_PERIODIC_ENABLE 2635#if EV_PERIODIC_ENABLE
2523 if (periodiccnt) 2636 if (periodiccnt)
2524 { 2637 {
2525 ev_tstamp to = ANHE_at (periodics [HEAP0]) - ev_rt_now + backend_fudge; 2638 ev_tstamp to = ANHE_at (periodics [HEAP0]) - ev_rt_now;
2526 if (waittime > to) waittime = to; 2639 if (waittime > to) waittime = to;
2527 } 2640 }
2528#endif 2641#endif
2529 2642
2530 /* don't let timeouts decrease the waittime below timeout_blocktime */ 2643 /* don't let timeouts decrease the waittime below timeout_blocktime */
2531 if (expect_false (waittime < timeout_blocktime)) 2644 if (expect_false (waittime < timeout_blocktime))
2532 waittime = timeout_blocktime; 2645 waittime = timeout_blocktime;
2646
2647 /* at this point, we NEED to wait, so we have to ensure */
2648 /* to pass a minimum nonzero value to the backend */
2649 if (expect_false (waittime < backend_mintime))
2650 waittime = backend_mintime;
2533 2651
2534 /* extra check because io_blocktime is commonly 0 */ 2652 /* extra check because io_blocktime is commonly 0 */
2535 if (expect_false (io_blocktime)) 2653 if (expect_false (io_blocktime))
2536 { 2654 {
2537 sleeptime = io_blocktime - (mn_now - prev_mn_now); 2655 sleeptime = io_blocktime - (mn_now - prev_mn_now);
2538 2656
2539 if (sleeptime > waittime - backend_fudge) 2657 if (sleeptime > waittime - backend_mintime)
2540 sleeptime = waittime - backend_fudge; 2658 sleeptime = waittime - backend_mintime;
2541 2659
2542 if (expect_true (sleeptime > 0.)) 2660 if (expect_true (sleeptime > 0.))
2543 { 2661 {
2544 ev_sleep (sleeptime); 2662 ev_sleep (sleeptime);
2545 waittime -= sleeptime; 2663 waittime -= sleeptime;
2551 ++loop_count; 2669 ++loop_count;
2552#endif 2670#endif
2553 assert ((loop_done = EVBREAK_RECURSE, 1)); /* assert for side effect */ 2671 assert ((loop_done = EVBREAK_RECURSE, 1)); /* assert for side effect */
2554 backend_poll (EV_A_ waittime); 2672 backend_poll (EV_A_ waittime);
2555 assert ((loop_done = EVBREAK_CANCEL, 1)); /* assert for side effect */ 2673 assert ((loop_done = EVBREAK_CANCEL, 1)); /* assert for side effect */
2674
2675 pipe_write_wanted = 0; /* just an optimsiation, no fence needed */
2676
2677 if (pipe_write_skipped)
2678 {
2679 assert (("libev: pipe_w not active, but pipe not written", ev_is_active (&pipe_w)));
2680 ev_feed_event (EV_A_ &pipe_w, EV_CUSTOM);
2681 }
2682
2556 2683
2557 /* update ev_rt_now, do magic */ 2684 /* update ev_rt_now, do magic */
2558 time_update (EV_A_ waittime + sleeptime); 2685 time_update (EV_A_ waittime + sleeptime);
2559 } 2686 }
2560 2687
3214 infy_wd (EV_A_ ev->wd, ev->wd, ev); 3341 infy_wd (EV_A_ ev->wd, ev->wd, ev);
3215 ofs += sizeof (struct inotify_event) + ev->len; 3342 ofs += sizeof (struct inotify_event) + ev->len;
3216 } 3343 }
3217} 3344}
3218 3345
3219inline_size void 3346inline_size void ecb_cold
3220ev_check_2625 (EV_P) 3347ev_check_2625 (EV_P)
3221{ 3348{
3222 /* kernels < 2.6.25 are borked 3349 /* kernels < 2.6.25 are borked
3223 * http://www.ussg.indiana.edu/hypermail/linux/kernel/0711.3/1208.html 3350 * http://www.ussg.indiana.edu/hypermail/linux/kernel/0711.3/1208.html
3224 */ 3351 */
3849} 3976}
3850 3977
3851/*****************************************************************************/ 3978/*****************************************************************************/
3852 3979
3853#if EV_WALK_ENABLE 3980#if EV_WALK_ENABLE
3854void 3981void ecb_cold
3855ev_walk (EV_P_ int types, void (*cb)(EV_P_ int type, void *w)) 3982ev_walk (EV_P_ int types, void (*cb)(EV_P_ int type, void *w))
3856{ 3983{
3857 int i, j; 3984 int i, j;
3858 ev_watcher_list *wl, *wn; 3985 ev_watcher_list *wl, *wn;
3859 3986
3903 cb (EV_A_ EV_PERIODIC, ANHE_w (periodics [i])); 4030 cb (EV_A_ EV_PERIODIC, ANHE_w (periodics [i]));
3904#endif 4031#endif
3905 4032
3906#if EV_IDLE_ENABLE 4033#if EV_IDLE_ENABLE
3907 if (types & EV_IDLE) 4034 if (types & EV_IDLE)
3908 for (j = NUMPRI; i--; ) 4035 for (j = NUMPRI; j--; )
3909 for (i = idlecnt [j]; i--; ) 4036 for (i = idlecnt [j]; i--; )
3910 cb (EV_A_ EV_IDLE, idles [j][i]); 4037 cb (EV_A_ EV_IDLE, idles [j][i]);
3911#endif 4038#endif
3912 4039
3913#if EV_FORK_ENABLE 4040#if EV_FORK_ENABLE

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines