summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ev.c1
-rw-r--r--ev_epoll.c4
2 files changed, 1 insertions, 4 deletions
diff --git a/ev.c b/ev.c
index 96380ac..aefc9df 100644
--- a/ev.c
+++ b/ev.c
@@ -85,7 +85,6 @@ get_clock (void)
if ((cnt) > cur) \
{ \
int newcnt = cur ? cur << 1 : 16; \
- fprintf (stderr, "resize(" # base ") from %d to %d\n", cur, newcnt);\
base = realloc (base, sizeof (*base) * (newcnt)); \
init (base + cur, newcnt - cur); \
cur = newcnt; \
diff --git a/ev_epoll.c b/ev_epoll.c
index 11ee926..da2b5bc 100644
--- a/ev_epoll.c
+++ b/ev_epoll.c
@@ -13,9 +13,7 @@ epoll_modify (int fd, int oev, int nev)
(nev & EV_READ ? EPOLLIN : 0)
| (nev & EV_WRITE ? EPOLLOUT : 0);
- fprintf (stderr, "reify %d,%d,%d m%d (r=%d)\n", fd, oev, nev, mode,//D
- epoll_ctl (epoll_fd, mode, fd, &ev)
- );//D
+ epoll_ctl (epoll_fd, mode, fd, &ev);
}
void epoll_postfork_child (void)