2
0

curl_multi_wakeup.3 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.haxx.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .TH curl_multi_wakeup 3 "17 Nov 2019" "libcurl 7.68.0" "libcurl Manual"
  23. .SH NAME
  24. curl_multi_wakeup - wakes up a sleeping curl_multi_poll call
  25. .SH SYNOPSIS
  26. #include <curl/curl.h>
  27. CURLMcode curl_multi_wakeup(CURLM *multi_handle);
  28. .ad
  29. .SH DESCRIPTION
  30. This function can be called from any thread and it wakes up a
  31. sleeping \fIcurl_multi_poll(3)\fP call that is currently (or will be)
  32. waiting for activity or a timeout.
  33. If the function is called when there is no \fIcurl_multi_poll(3)\fP call,
  34. it will cause the next call to return immediately.
  35. Calling this function only guarantees to wake up the current (or the next
  36. if there is no current) \fIcurl_multi_poll(3)\fP call, which means it is
  37. possible that multiple calls to this function will wake up the same waiting
  38. operation.
  39. This function has no effect on \fIcurl_multi_wait(3)\fP calls.
  40. .SH RETURN VALUE
  41. CURLMcode type, general libcurl multi interface error code.
  42. .SH AVAILABILITY
  43. Added in 7.68.0
  44. .SH EXAMPLE
  45. .nf
  46. CURL *easy_handle;
  47. CURLM *multi_handle;
  48. /* add the individual easy handle */
  49. curl_multi_add_handle(multi_handle, easy_handle);
  50. /* this is thread 1 */
  51. do {
  52. CURLMcode mc;
  53. int numfds;
  54. mc = curl_multi_perform(multi_handle, &still_running);
  55. if(mc == CURLM_OK) {
  56. /* wait for activity, timeout or wakeup */
  57. mc = curl_multi_poll(multi_handle, NULL, 0, 10000, &numfds);
  58. }
  59. if(time_to_die())
  60. exit(1);
  61. } while(still_running);
  62. curl_multi_remove_handle(multi_handle, easy_handle);
  63. /* this is thread 2 */
  64. if(something makes us decide to stop thread 1) {
  65. set_something_to_signal_thread_1_to_exit();
  66. curl_multi_wakeup(multi_handle);
  67. }
  68. .fi
  69. .SH "SEE ALSO"
  70. .BR curl_multi_poll "(3), " curl_multi_wait "(3)"