diff options
Diffstat (limited to 'src/microhttpd/test_shutdown_select.c')
-rw-r--r-- | src/microhttpd/test_shutdown_select.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/microhttpd/test_shutdown_select.c b/src/microhttpd/test_shutdown_select.c index 8a374421..df36b49c 100644 --- a/src/microhttpd/test_shutdown_select.c +++ b/src/microhttpd/test_shutdown_select.c @@ -20,7 +20,12 @@ /** * @file microhttpd/test_shutdown_select.c - * @brief Test whether shutdown socket triggers select + * @brief Test whether shutdown socket triggers select()/poll() + * @details On some platforms shutting down the socket in one thread + * trigger select() or poll() waiting for this socket in + * other thread. libmicrohttpd depend on this behavior on + * those platforms. This program check whether select() + * and poll() (if available) works as expected. * @author Karlson2k (Evgeny Grin) */ |