Committer  : entrope
CVSROOT    : /cvsroot/undernet-ircu
Module     : ircu2.10
Commit time: 2005-08-25 01:39:25 UTC

Modified files:
     ChangeLog ircd/ircd.c

Log message:

Mention epoll event engine in "ircd -v" output.

---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.678 ircu2.10/ChangeLog:1.679
--- ircu2.10/ChangeLog:1.678    Wed Aug 24 18:26:45 2005
+++ ircu2.10/ChangeLog  Wed Aug 24 18:39:15 2005
@@ -1,5 +1,10 @@
 2005-08-24  Michael Poole <[EMAIL PROTECTED]>
 
+       * ircd/ircd.c (parse_command_line): Mention epoll engine when run
+       with -v.
+
+2005-08-24  Michael Poole <[EMAIL PROTECTED]>
+
        * include/patchlevel.h (PATCHLEVEL): Increment.
 
        * ircd/channel.c (joinbuf_join): Double check that oplevel is 0 or
Index: ircu2.10/ircd/ircd.c
diff -u ircu2.10/ircd/ircd.c:1.89 ircu2.10/ircd/ircd.c:1.90
--- ircu2.10/ircd/ircd.c:1.89   Mon May 30 14:07:32 2005
+++ ircu2.10/ircd/ircd.c        Wed Aug 24 18:39:15 2005
@@ -19,7 +19,7 @@
  */
 /** @file
  * @brief Entry point and other initialization functions for the daemon.
- * @version $Id: ircd.c,v 1.89 2005/05/30 21:07:32 entrope Exp $
+ * @version $Id: ircd.c,v 1.90 2005/08/25 01:39:15 entrope Exp $
  */
 #include "config.h"
 
@@ -484,6 +484,9 @@
 #ifdef USE_DEVPOLL
       printf("/dev/poll ");
 #endif
+#ifdef USE_EPOLL
+      printf("epoll_*() ");
+#endif
 #ifdef USE_POLL
       printf("poll()");
 #else
----------------------- End of diff -----------------------
_______________________________________________
Patches mailing list
[email protected]
http://undernet.sbg.org/mailman/listinfo/patches

Reply via email to