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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
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 Dcurl_threads.c64 curl_thread_t Curl_thread_create(unsigned int (*func) (void*), void *arg)
66 curl_thread_t t = malloc(sizeof(pthread_t));
85 void Curl_thread_destroy(curl_thread_t hnd)
93 int Curl_thread_join(curl_thread_t *hnd)
105 curl_thread_t Curl_thread_create(unsigned int (CURL_STDCALL *func) (void*),
111 curl_thread_t t;
112 t = (curl_thread_t)_beginthreadex(NULL, 0, func, arg, 0, NULL);
113 if((t == 0) || (t == (curl_thread_t)-1L))
119 void Curl_thread_destroy(curl_thread_t hnd)
124 int Curl_thread_join(curl_thread_t *hn
[all...]
H A Dasyn-thread.c171 curl_thread_t thread_hnd;

Completed in 110 milliseconds