1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-07 01:03:12 +02:00

Move kevent errors to DEBUGMODE until Travis has time to debug these...

This commit is contained in:
Bram Matthys
2016-03-11 14:07:43 +01:00
parent cafb08446f
commit 28a1fca8dc
+6
View File
@@ -318,7 +318,9 @@ void fd_fork()
if (ERRNO == P_EWOULDBLOCK || ERRNO == P_EAGAIN)
continue;
#ifdef DEBUGMODE
ircd_log(LOG_ERROR, "[BUG?] kevent returned %d", errno);
#endif
}
}
}
@@ -342,8 +344,10 @@ void fd_refresh(int fd)
EV_SET(&kqueue_prepared[fd], (uintptr_t) fd, (short) EVFILT_READ, fde->read_callback != NULL ? EV_ADD : EV_DELETE, 0, 0, fde);
if (kevent(kqueue_fd, &kqueue_prepared[fd], 1, NULL, 0, &(const struct timespec){ .tv_sec = 0, .tv_nsec = 0}) != 0)
{
#ifdef DEBUGMODE
if (ERRNO != P_EWOULDBLOCK && ERRNO != P_EAGAIN)
ircd_log(LOG_ERROR, "[BUG?] kevent returned %d", errno);
#endif
}
}
@@ -352,8 +356,10 @@ void fd_refresh(int fd)
EV_SET(&kqueue_prepared[fd+MAXCONNECTIONS], (uintptr_t) fd, (short) EVFILT_WRITE, fde->write_callback != NULL ? EV_ADD : EV_DELETE, 0, 0, fde);
if (kevent(kqueue_fd, &kqueue_prepared[fd+MAXCONNECTIONS], 1, NULL, 0, &(const struct timespec){ .tv_sec = 0, .tv_nsec = 0}) != 0)
{
#ifdef DEBUGMODE
if (ERRNO != P_EWOULDBLOCK && ERRNO != P_EAGAIN)
ircd_log(LOG_ERROR, "[BUG?] kevent returned %d", errno);
#endif
}
}