Skip to content

Commit

Permalink
Merge pull request #800 from nomis52/kqueue
Browse files Browse the repository at this point in the history
Disable the use of kqueue.
  • Loading branch information
nomis52 committed Jun 24, 2015
2 parents fbda4d2 + 2050341 commit b0ae0d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/io/SelectServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ DEFINE_default_bool(use_epoll, true,

#ifdef HAVE_KQUEUE
#include "common/io/KQueuePoller.h"
DEFINE_default_bool(use_kqueue, true,
"Disable the use of kqueue(), revert to select()");
DEFINE_default_bool(use_kqueue, false,
"Use kqueue() rather than select()");
#endif

namespace ola {
Expand Down

0 comments on commit b0ae0d5

Please sign in to comment.