projects
/
feed
/
packages.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a8ec32
)
libmicrohttpd: Enable 'poll()' usage
author
Evgeny Grin (Karlson2k)
<k2k@narod.ru>
Sun, 27 Oct 2024 16:03:10 +0000
(17:03 +0100)
committer
Rosen Penev
<rosenp@gmail.com>
Sun, 27 Oct 2024 22:51:33 +0000
(15:51 -0700)
If 'poll()' function is disabled, then in thread-per-connection mode
'select()' is used. This is much less efficient.
'epoll' is not used in thread-per-connection mode as it would require
additional epoll FD per every connection.
Signed-off-by: Evgeny Grin (Karlson2k) <k2k@narod.ru>
libs/libmicrohttpd/Makefile
patch
|
blob
|
history
diff --git
a/libs/libmicrohttpd/Makefile
b/libs/libmicrohttpd/Makefile
index 1c820bdd5b89ba052304fc37731e8bfc2a6dc1dc..98e6d8080fa0fbc7724ed01f40d9e67fcd10014c 100644
(file)
--- a/
libs/libmicrohttpd/Makefile
+++ b/
libs/libmicrohttpd/Makefile
@@
-57,7
+57,6
@@
CONFIGURE_ARGS += \
--disable-rpath \
--disable-doc \
--disable-examples \
- --disable-poll \
--enable-epoll \
--with-pic