Searched refs:curl_thread_t (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/
H A Dcurl_threads.c64 curl_thread_t Curl_thread_create(unsigned int (*func) (void*), void *arg)
66 curl_thread_t t;
82 void Curl_thread_destroy(curl_thread_t hnd)
88 int Curl_thread_join(curl_thread_t *hnd)
99 curl_thread_t Curl_thread_create(unsigned int (CURL_STDCALL *func) (void*),
105 curl_thread_t t;
106 t = (curl_thread_t)_beginthreadex(NULL, 0, func, arg, 0, NULL);
107 if((t == 0) || (t == (curl_thread_t)-1L))
113 void Curl_thread_destroy(curl_thread_t hnd)
118 int Curl_thread_join(curl_thread_t *hn
[all...]
H A Dcurl_threads.h29 # define curl_thread_t pthread_t macro
38 # define curl_thread_t HANDLE macro
48 curl_thread_t Curl_thread_create(unsigned int (CURL_STDCALL *func) (void*),
51 void Curl_thread_destroy(curl_thread_t hnd);
53 int Curl_thread_join(curl_thread_t *hnd);
H A Dasyn-thread.c177 curl_thread_t thread_hnd;

Completed in 129 milliseconds