From: Michael Poole Date: Thu, 25 Aug 2005 01:39:15 +0000 (+0000) Subject: Mention epoll event engine in "ircd -v" output. X-Git-Url: http://git.pk910.de/?a=commitdiff_plain;h=9139e06fcd4dce71a106d50d44d2b642d20dd97e;p=ircu2.10.12-pk.git Mention epoll event engine in "ircd -v" output. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1464 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/ChangeLog b/ChangeLog index 2284e54..95384e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-08-24 Michael Poole + + * ircd/ircd.c (parse_command_line): Mention epoll engine when run + with -v. + 2005-08-24 Michael Poole * include/patchlevel.h (PATCHLEVEL): Increment. diff --git a/ircd/ircd.c b/ircd/ircd.c index a6ffa00..b1f87b7 100644 --- a/ircd/ircd.c +++ b/ircd/ircd.c @@ -484,6 +484,9 @@ static void parse_command_line(int argc, char** argv) { #ifdef USE_DEVPOLL printf("/dev/poll "); #endif +#ifdef USE_EPOLL + printf("epoll_*() "); +#endif #ifdef USE_POLL printf("poll()"); #else