curl_threads.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2015, Daniel Stenberg, <[email protected]>, 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 http://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. #include "curl_setup.h"
  23. #if defined(USE_THREADS_POSIX)
  24. # ifdef HAVE_PTHREAD_H
  25. # include <pthread.h>
  26. # endif
  27. #elif defined(USE_THREADS_WIN32)
  28. # ifdef HAVE_PROCESS_H
  29. # include <process.h>
  30. # endif
  31. #endif
  32. #include "curl_threads.h"
  33. #include "curl_memory.h"
  34. /* The last #include file should be: */
  35. #include "memdebug.h"
  36. #if defined(USE_THREADS_POSIX)
  37. struct curl_actual_call {
  38. unsigned int (*func)(void *);
  39. void *arg;
  40. };
  41. static void *curl_thread_create_thunk(void *arg)
  42. {
  43. struct curl_actual_call * ac = arg;
  44. unsigned int (*func)(void *) = ac->func;
  45. void *real_arg = ac->arg;
  46. free(ac);
  47. (*func)(real_arg);
  48. return 0;
  49. }
  50. curl_thread_t Curl_thread_create(unsigned int (*func) (void*), void *arg)
  51. {
  52. curl_thread_t t = malloc(sizeof(pthread_t));
  53. struct curl_actual_call *ac = malloc(sizeof(struct curl_actual_call));
  54. if(!(ac && t))
  55. goto err;
  56. ac->func = func;
  57. ac->arg = arg;
  58. if(pthread_create(t, NULL, curl_thread_create_thunk, ac) != 0)
  59. goto err;
  60. return t;
  61. err:
  62. free(t);
  63. free(ac);
  64. return curl_thread_t_null;
  65. }
  66. void Curl_thread_destroy(curl_thread_t hnd)
  67. {
  68. if(hnd != curl_thread_t_null) {
  69. pthread_detach(*hnd);
  70. free(hnd);
  71. }
  72. }
  73. int Curl_thread_join(curl_thread_t *hnd)
  74. {
  75. int ret = (pthread_join(**hnd, NULL) == 0);
  76. free(*hnd);
  77. *hnd = curl_thread_t_null;
  78. return ret;
  79. }
  80. #elif defined(USE_THREADS_WIN32)
  81. curl_thread_t Curl_thread_create(unsigned int (CURL_STDCALL *func) (void*),
  82. void *arg)
  83. {
  84. #ifdef _WIN32_WCE
  85. return CreateThread(NULL, 0, func, arg, 0, NULL);
  86. #else
  87. curl_thread_t t;
  88. t = (curl_thread_t)_beginthreadex(NULL, 0, func, arg, 0, NULL);
  89. if((t == 0) || (t == (curl_thread_t)-1L))
  90. return curl_thread_t_null;
  91. return t;
  92. #endif
  93. }
  94. void Curl_thread_destroy(curl_thread_t hnd)
  95. {
  96. CloseHandle(hnd);
  97. }
  98. int Curl_thread_join(curl_thread_t *hnd)
  99. {
  100. #if !defined(_WIN32_WINNT) || !defined(_WIN32_WINNT_VISTA) || \
  101. (_WIN32_WINNT < _WIN32_WINNT_VISTA)
  102. int ret = (WaitForSingleObject(*hnd, INFINITE) == WAIT_OBJECT_0);
  103. #else
  104. int ret = (WaitForSingleObjectEx(*hnd, INFINITE, FALSE) == WAIT_OBJECT_0);
  105. #endif
  106. Curl_thread_destroy(*hnd);
  107. *hnd = curl_thread_t_null;
  108. return ret;
  109. }
  110. #endif /* USE_THREADS_* */