Searched refs:capture_thread (Results 1 – 1 of 1) sorted by relevance
/external/libpcap/testprogs/ |
D | threadsignaltest.c | 191 THREAD_HANDLE capture_thread; in main() local 271 capture_thread = CreateThread(NULL, 0, capture_thread_func, device, in main() 273 if (capture_thread == NULL) in main() 277 status = pthread_create(&capture_thread, NULL, capture_thread_func, in main() 289 if (WaitForSingleObject(capture_thread, INFINITE) == WAIT_FAILED) in main() 292 CloseHandle(capture_thread); in main() 295 status = pthread_kill(capture_thread, SIGUSR1); in main() 298 status = pthread_join(capture_thread, &retval); in main()
|