HomeSort by: relevance | last modified time | path
    Searched defs:capture_thread (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/libpcap/dist/testprogs/
threadsignaltest.c 191 THREAD_HANDLE capture_thread; local
269 capture_thread = CreateThread(NULL, 0, capture_thread_func, device,
271 if (capture_thread == NULL)
275 status = pthread_create(&capture_thread, NULL, capture_thread_func,
298 status = pthread_kill(capture_thread, SIGUSR1);
309 if (WaitForSingleObject(capture_thread, INFINITE) == WAIT_FAILED)
312 CloseHandle(capture_thread);
314 status = pthread_join(capture_thread, &retval);
threadsignaltest.c 191 THREAD_HANDLE capture_thread; local
269 capture_thread = CreateThread(NULL, 0, capture_thread_func, device,
271 if (capture_thread == NULL)
275 status = pthread_create(&capture_thread, NULL, capture_thread_func,
298 status = pthread_kill(capture_thread, SIGUSR1);
309 if (WaitForSingleObject(capture_thread, INFINITE) == WAIT_FAILED)
312 CloseHandle(capture_thread);
314 status = pthread_join(capture_thread, &retval);

Completed in 114 milliseconds