Searched refs:thread_hnd (Results 1 - 2 of 2) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/
H A Dasyn-thread.c177 curl_thread_t thread_hnd; member in struct:thread_data
335 if(td->thread_hnd != curl_thread_t_null)
336 Curl_thread_join(&td->thread_hnd);
368 td->thread_hnd = curl_thread_t_null;
389 td->thread_hnd = Curl_thread_create(getaddrinfo_thread, &td->tsd);
391 td->thread_hnd = Curl_thread_create(gethostbyname_thread, &td->tsd);
394 if(!td->thread_hnd) {
487 if(Curl_thread_join(&td->thread_hnd))
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/wget-1.12/src/
H A Dmswindows.c531 HANDLE thread_hnd;
548 thread_hnd = CreateThread (NULL, THREAD_STACK_SIZE, thread_helper,
550 if (!thread_hnd)
557 if (WaitForSingleObject (thread_hnd, (DWORD)(1000 * seconds))
568 TerminateThread (thread_hnd, 1);
572 CloseHandle (thread_hnd); /* Clear-up after TerminateThread(). */
573 thread_hnd = NULL;
529 HANDLE thread_hnd; local

Completed in 96 milliseconds