diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-30 13:51:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-30 13:51:30 +0000 |
commit | 23a5863b5bc81e7ea3c42aa6e5a5f27c071ae3ac (patch) | |
tree | ce5b5ad1d733e63313b1876c555b5b58ad798d61 /lib/libevent/event.c | |
parent | 7b2ee8a540c68bc249a4734323bb044e004e7bd0 (diff) |
stop using kqueue.
Diffstat (limited to 'lib/libevent/event.c')
-rw-r--r-- | lib/libevent/event.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libevent/event.c b/lib/libevent/event.c index 928cbf7145e..2923379dc2f 100644 --- a/lib/libevent/event.c +++ b/lib/libevent/event.c @@ -1,4 +1,4 @@ -/* $OpenBSD: event.c,v 1.19 2008/05/02 18:26:42 brad Exp $ */ +/* $OpenBSD: event.c,v 1.20 2009/10/30 13:51:29 deraadt Exp $ */ /* * Copyright (c) 2000-2004 Niels Provos <provos@citi.umich.edu> @@ -89,9 +89,6 @@ const struct eventop *eventops[] = { #ifdef HAVE_EVENT_PORTS &evportops, #endif -#ifdef HAVE_WORKING_KQUEUE - &kqops, -#endif #ifdef HAVE_EPOLL &epollops, #endif @@ -107,6 +104,9 @@ const struct eventop *eventops[] = { #ifdef HAVE_SELECT &selectops, #endif +#ifdef HAVE_WORKING_KQUEUE + &kqops, +#endif #ifdef WIN32 &win32ops, #endif |