Remove BLOCKING_POLL
The code was not correct anymore and correcting it does not seem worthwhile.
This commit is contained in:
parent
8e24f847e6
commit
58c1c1a3ca
@ -595,10 +595,6 @@ poll_resolve_error(DCB *dcb, int errornum, bool adding)
|
||||
return -1;
|
||||
}
|
||||
|
||||
#define BLOCKINGPOLL 0 /*< Set BLOCKING POLL to 1 if using a single thread and to make
|
||||
* debugging easier.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The main polling loop
|
||||
*
|
||||
@ -665,10 +661,6 @@ poll_waitevents(void *arg)
|
||||
while (1)
|
||||
{
|
||||
atomic_add(&n_waiting, 1);
|
||||
#if BLOCKINGPOLL
|
||||
nfds = epoll_wait(epoll_fd, events, MAX_EVENTS, -1);
|
||||
atomic_add(&n_waiting, -1);
|
||||
#else /* BLOCKINGPOLL */
|
||||
#if MUTEX_EPOLL
|
||||
simple_mutex_lock(&epoll_wait_mutex, TRUE);
|
||||
#endif
|
||||
@ -723,7 +715,6 @@ poll_waitevents(void *arg)
|
||||
#if MUTEX_EPOLL
|
||||
simple_mutex_unlock(&epoll_wait_mutex);
|
||||
#endif
|
||||
#endif /* BLOCKINGPOLL */
|
||||
if (nfds > 0)
|
||||
{
|
||||
ts_stats_set(pollStats.evq_length, nfds, thread_id);
|
||||
|
Loading…
x
Reference in New Issue
Block a user