curl_threads.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2011, 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 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 "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. #define _MPRINTF_REPLACE /* use our functions only */
  34. #include <curl/mprintf.h>
  35. #include "curl_memory.h"
  36. /* The last #include file should be: */
  37. #include "memdebug.h"
  38. #if defined(USE_THREADS_POSIX)
  39. struct curl_actual_call {
  40. unsigned int (*func)(void *);
  41. void *arg;
  42. };
  43. static void *curl_thread_create_thunk(void *arg)
  44. {
  45. struct curl_actual_call * ac = arg;
  46. unsigned int (*func)(void *) = ac->func;
  47. void *real_arg = ac->arg;
  48. free(ac);
  49. (*func)(real_arg);
  50. return 0;
  51. }
  52. curl_thread_t Curl_thread_create(unsigned int (*func) (void*), void *arg)
  53. {
  54. curl_thread_t t;
  55. struct curl_actual_call *ac = malloc(sizeof(struct curl_actual_call));
  56. if(!ac)
  57. return curl_thread_t_null;
  58. ac->func = func;
  59. ac->arg = arg;
  60. if(pthread_create(&t, NULL, curl_thread_create_thunk, ac) != 0) {
  61. free(ac);
  62. return curl_thread_t_null;
  63. }
  64. return t;
  65. }
  66. void Curl_thread_destroy(curl_thread_t hnd)
  67. {
  68. if(hnd != curl_thread_t_null)
  69. pthread_detach(hnd);
  70. }
  71. int Curl_thread_join(curl_thread_t *hnd)
  72. {
  73. int ret = (pthread_join(*hnd, NULL) == 0);
  74. *hnd = curl_thread_t_null;
  75. return ret;
  76. }
  77. #elif defined(USE_THREADS_WIN32)
  78. curl_thread_t Curl_thread_create(unsigned int (CURL_STDCALL *func) (void*),
  79. void *arg)
  80. {
  81. #ifdef _WIN32_WCE
  82. return CreateThread(NULL, 0, func, arg, 0, NULL);
  83. #else
  84. curl_thread_t t;
  85. t = (curl_thread_t)_beginthreadex(NULL, 0, func, arg, 0, NULL);
  86. if((t == 0) || (t == (curl_thread_t)-1L))
  87. return curl_thread_t_null;
  88. return t;
  89. #endif
  90. }
  91. void Curl_thread_destroy(curl_thread_t hnd)
  92. {
  93. CloseHandle(hnd);
  94. }
  95. int Curl_thread_join(curl_thread_t *hnd)
  96. {
  97. int ret = (WaitForSingleObject(*hnd, INFINITE) == WAIT_OBJECT_0);
  98. Curl_thread_destroy(*hnd);
  99. *hnd = curl_thread_t_null;
  100. return ret;
  101. }
  102. #endif /* USE_THREADS_* */