]> git.sur5r.net Git - openldap/commitdiff
Fix prev commit, didn't mean to have HAVE_EPOLL hardcoded
authorHoward Chu <hyc@openldap.org>
Thu, 18 Nov 2004 19:15:21 +0000 (19:15 +0000)
committerHoward Chu <hyc@openldap.org>
Thu, 18 Nov 2004 19:15:21 +0000 (19:15 +0000)
servers/slapd/daemon.c

index 52c2afd86a6357475ef292d6e5136abd69a222df..5094345e99555d73c260eb7e98e52ed6911f5212 100644 (file)
@@ -40,8 +40,6 @@
 
 #include "ldap_rq.h"
 
-#define        HAVE_EPOLL      1
-
 #ifdef HAVE_EPOLL
 #include <sys/epoll.h>
 #endif
@@ -117,7 +115,6 @@ static struct slap_daemon {
 #define        SLAP_EVENTS_ARE_INDEXED 0
 #define        SLAP_SOCK_IX(s) (slap_daemon.sd_index[s])
 #define SLAP_SOCK_EP(s)        (slap_daemon.sd_epolls[SLAP_SOCK_IX(s)])
-#define SLAP_SOCK_FD(s)        (SLAP_SOCK_EP(s).data.fd)
 #define SLAP_SOCK_EV(s)        (SLAP_SOCK_EP(s).events)
 #define SLAP_SOCK_IS_ACTIVE(s) (SLAP_SOCK_IX(s) != -1)
 #define SLAP_SOCK_NOT_ACTIVE(s)        (SLAP_SOCK_IX(s) == -1)