rmeove remaining debugging code

master
Marc Alexander Lehmann 2007-10-31 11:56:34 +00:00
parent ef1150cb72
commit 1392c0d64f
2 changed files with 1 additions and 4 deletions

1
ev.c
View File

@ -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; \

View File

@ -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)