Use linux-epoll by default if available (fixes #2021, thx Olaf van der Spek)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2612 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
0eff441bb6
commit
5ae8685604
1
NEWS
1
NEWS
|
@ -34,6 +34,7 @@ NEWS
|
|||
* Fix ipv6 in mod_proxy (fixes #2043)
|
||||
* Print errors from include_shell to stderr
|
||||
* Set tm.tm_isdst = 0 before mktime() (fixes #2047)
|
||||
* Use linux-epoll by default if available (fixes #2021, thx Olaf van der Spek)
|
||||
|
||||
- 1.4.23 - 2009-06-19
|
||||
* Added some extra warning options in cmake and fix the resulting warnings (unused/static functions)
|
||||
|
|
|
@ -1139,15 +1139,15 @@ int config_set_defaults(server *srv) {
|
|||
* - select works everywhere
|
||||
* - linux-* are experimental
|
||||
*/
|
||||
#ifdef USE_LINUX_EPOLL
|
||||
{ FDEVENT_HANDLER_LINUX_SYSEPOLL, "linux-sysepoll" },
|
||||
#endif
|
||||
#ifdef USE_POLL
|
||||
{ FDEVENT_HANDLER_POLL, "poll" },
|
||||
#endif
|
||||
#ifdef USE_SELECT
|
||||
{ FDEVENT_HANDLER_SELECT, "select" },
|
||||
#endif
|
||||
#ifdef USE_LINUX_EPOLL
|
||||
{ FDEVENT_HANDLER_LINUX_SYSEPOLL, "linux-sysepoll" },
|
||||
#endif
|
||||
#ifdef USE_LINUX_SIGIO
|
||||
{ FDEVENT_HANDLER_LINUX_RTSIG, "linux-rtsig" },
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue