HomeSort by relevance Sort by last modified time
    Searched refs:curl_thread_t (Results 1 - 3 of 3) sorted by null

  /external/curl/lib/
curl_threads.h 29 # define curl_thread_t pthread_t * macro
38 # define curl_thread_t HANDLE macro
55 curl_thread_t Curl_thread_create(unsigned int (CURL_STDCALL *func) (void *),
58 void Curl_thread_destroy(curl_thread_t hnd);
60 int Curl_thread_join(curl_thread_t *hnd);
curl_threads.c 62 curl_thread_t Curl_thread_create(unsigned int (*func) (void *), void *arg)
64 curl_thread_t t = malloc(sizeof(pthread_t));
83 void Curl_thread_destroy(curl_thread_t hnd)
91 int Curl_thread_join(curl_thread_t *hnd)
104 curl_thread_t Curl_thread_create(unsigned int (CURL_STDCALL *func) (void *),
114 curl_thread_t t;
121 t = (curl_thread_t)thread_handle;
134 void Curl_thread_destroy(curl_thread_t hnd)
139 int Curl_thread_join(curl_thread_t *hnd)
asyn-thread.c 175 curl_thread_t thread_hnd;

Completed in 302 milliseconds