summaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_multi_wakeup.3
diff options
context:
space:
mode:
authorSeonah Moon <seonah1.moon@samsung.com>2022-01-12 13:27:51 +0900
committerSeonah Moon <seonah1.moon@samsung.com>2022-01-12 13:28:56 +0900
commit58f7e70ff869dee66c90b1323e0d5c9f324067b8 (patch)
tree31060230fe108ac26a3258e1b4fb22454c7cf01c /docs/libcurl/curl_multi_wakeup.3
parentb31894b8fe11ff4cfe97bd63eb4e62e14893c749 (diff)
downloadcurl-58f7e70ff869dee66c90b1323e0d5c9f324067b8.tar.gz
curl-58f7e70ff869dee66c90b1323e0d5c9f324067b8.tar.bz2
curl-58f7e70ff869dee66c90b1323e0d5c9f324067b8.zip
Imported Upstream version 7.81.0upstream/7.81.0
Change-Id: Ibe8b1de1691e326fbd2a8133470758ab942cbd97
Diffstat (limited to 'docs/libcurl/curl_multi_wakeup.3')
-rw-r--r--docs/libcurl/curl_multi_wakeup.317
1 files changed, 9 insertions, 8 deletions
diff --git a/docs/libcurl/curl_multi_wakeup.3 b/docs/libcurl/curl_multi_wakeup.3
index a6be26366..c6f7df0da 100644
--- a/docs/libcurl/curl_multi_wakeup.3
+++ b/docs/libcurl/curl_multi_wakeup.3
@@ -5,11 +5,11 @@
.\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____|
.\" *
-.\" * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
+.\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
.\" *
.\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms
-.\" * are also available at https://curl.haxx.se/docs/copyright.html.
+.\" * are also available at https://curl.se/docs/copyright.html.
.\" *
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
.\" * copies of the Software, and permit persons to whom the Software is
@@ -19,15 +19,16 @@
.\" * KIND, either express or implied.
.\" *
.\" **************************************************************************
-.TH curl_multi_wakeup 3 "November 25, 2019" "libcurl 7.73.0" "libcurl Manual"
+.TH curl_multi_wakeup 3 "November 26, 2021" "libcurl 7.81.0" "libcurl Manual"
.SH NAME
curl_multi_wakeup - wakes up a sleeping curl_multi_poll call
.SH SYNOPSIS
+.nf
#include <curl/curl.h>
CURLMcode curl_multi_wakeup(CURLM *multi_handle);
-.ad
+.fi
.SH DESCRIPTION
This function can be called from any thread and it wakes up a
sleeping \fIcurl_multi_poll(3)\fP call that is currently (or will be)
@@ -42,10 +43,6 @@ possible that multiple calls to this function will wake up the same waiting
operation.
This function has no effect on \fIcurl_multi_wait(3)\fP calls.
-.SH RETURN VALUE
-CURLMcode type, general libcurl multi interface error code.
-.SH AVAILABILITY
-Added in 7.68.0
.SH EXAMPLE
.nf
CURL *easy_handle;
@@ -83,5 +80,9 @@ if(something makes us decide to stop thread 1) {
}
.fi
+.SH AVAILABILITY
+Added in 7.68.0
+.SH RETURN VALUE
+CURLMcode type, general libcurl multi interface error code.
.SH "SEE ALSO"
.BR curl_multi_poll "(3), " curl_multi_wait "(3)"