aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-08 00:46:42 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-08 01:00:00 +0300
commitbae7dc05a841adfd7788076c83c7c02aa3c57046 (patch)
tree4a57b4eeb7a3b61fd4f270247d534865287c39bf /doc
parenta48ca85fb74479a8a81e137138a30fab58f3eb1e (diff)
downloadlibmicrohttpd-bae7dc05a841adfd7788076c83c7c02aa3c57046.tar.gz
libmicrohttpd-bae7dc05a841adfd7788076c83c7c02aa3c57046.zip
Fixed wrong flag name in documentation.
Diffstat (limited to 'doc')
-rw-r--r--doc/libmicrohttpd.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/libmicrohttpd.texi b/doc/libmicrohttpd.texi
index 182c1dd9..86b94257 100644
--- a/doc/libmicrohttpd.texi
+++ b/doc/libmicrohttpd.texi
@@ -503,7 +503,7 @@ production.
503Use @code{poll()} instead of @code{select()}. This allows sockets with 503Use @code{poll()} instead of @code{select()}. This allows sockets with
504descriptors @code{>= FD_SETSIZE}. This option currently only works in 504descriptors @code{>= FD_SETSIZE}. This option currently only works in
505conjunction with @code{MHD_USE_THREAD_PER_CONNECTION} or 505conjunction with @code{MHD_USE_THREAD_PER_CONNECTION} or
506@code{MHD_USE_INTERNAL_SELECT} (at this point). If you specify 506@code{MHD_USE_INTERNAL_POLLING_THREAD} (at this point). If you specify
507@code{MHD_USE_POLL} and the local platform does not support it, 507@code{MHD_USE_POLL} and the local platform does not support it,
508@code{MHD_start_daemon} will return NULL. 508@code{MHD_start_daemon} will return NULL.
509 509
@@ -567,7 +567,7 @@ with using a thread pool; if it is used,
567Force MHD to use a signal inter-thread communication channel to notify 567Force MHD to use a signal inter-thread communication channel to notify
568the event loop (of threads) of our shutdown and other events. 568the event loop (of threads) of our shutdown and other events.
569This is required if an appliction uses 569This is required if an appliction uses
570@code{MHD_USE_INTERNAL_SELECT} or @code{MHD_USE_THREAD_PER_CONNECTION} 570@code{MHD_USE_INTERNAL_POLLING_THREAD} or @code{MHD_USE_THREAD_PER_CONNECTION}
571and then performs @code{MHD_quiesce_daemon} (which eliminates our 571and then performs @code{MHD_quiesce_daemon} (which eliminates our
572ability to signal termination via the listen socket). In these modes, 572ability to signal termination via the listen socket). In these modes,
573@code{MHD_quiesce_daemon} will fail if this option was not set. Also, 573@code{MHD_quiesce_daemon} will fail if this option was not set. Also,
@@ -1603,7 +1603,7 @@ set for connections. This function must not be called if the
1603@code{MHD_USE_THREAD_PER_CONNECTION} mode is in use (since then it is 1603@code{MHD_USE_THREAD_PER_CONNECTION} mode is in use (since then it is
1604not meaningful to ask for a timeout, after all, there is concurrenct 1604not meaningful to ask for a timeout, after all, there is concurrenct
1605activity). The function must also not be called by user-code if 1605activity). The function must also not be called by user-code if
1606@code{MHD_USE_INTERNAL_SELECT} is in use. In the latter case, the 1606@code{MHD_USE_INTERNAL_POLLING_THREAD} is in use. In the latter case, the
1607behavior is undefined. 1607behavior is undefined.
1608 1608
1609@table @var 1609@table @var