summaryrefslogtreecommitdiff
path: root/ev.c
diff options
context:
space:
mode:
authorroot <root>2008-05-06 15:29:58 +0000
committerroot <root>2008-05-06 15:29:58 +0000
commit55f891552808df13054aa3be5339ec8a6137f4ec (patch)
tree9f3e1c015b0009e218d4d62308765edf5bd962f1 /ev.c
parent3dbea5aceeb711c65bb1d2192bfc8395d24d2dca (diff)
*** empty log message ***
Diffstat (limited to 'ev.c')
-rw-r--r--ev.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/ev.c b/ev.c
index e5b8c81..4065b99 100644
--- a/ev.c
+++ b/ev.c
@@ -522,6 +522,8 @@ ev_sleep (ev_tstamp delay)
/*****************************************************************************/
+#define MALLOC_ROUND 4096 // prefer to allocate in chunks of this size, must be 2**n and >> 4 longs
+
int inline_size
array_nextsize (int elem, int cur, int cnt)
{
@@ -531,11 +533,11 @@ array_nextsize (int elem, int cur, int cnt)
ncur <<= 1;
while (cnt > ncur);
- /* if size > 4096, round to 4096 - 4 * longs to accomodate malloc overhead */
- if (elem * ncur > 4096)
+ /* if size is large, round to MALLOC_ROUND - 4 * longs to accomodate malloc overhead */
+ if (elem * ncur > MALLOC_ROUND - sizeof (void *) * 4)
{
ncur *= elem;
- ncur = (ncur + elem + 4095 + sizeof (void *) * 4) & ~4095;
+ ncur = (ncur + elem + (MALLOC_ROUND - 1) + sizeof (void *) * 4) & ~(MALLOC_ROUND - 1);
ncur = ncur - sizeof (void *) * 4;
ncur /= elem;
}
@@ -914,7 +916,7 @@ pipecb (EV_P_ ev_io *iow, int revents)
#if EV_USE_EVENTFD
if (evfd >= 0)
{
- uint64_t counter = 1;
+ uint64_t counter;
read (evfd, &counter, sizeof (uint64_t));
}
else