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

/external/mdnsresponder/mDNSWindows/
H A DmDNSWin32.c256 mDNSlocal HANDLE gSMBThreadQuitEvent = NULL; variable
445 if ( WaitForSingleObject( gSMBThreadQuitEvent, 5 * 1000 ) == WAIT_OBJECT_0 )
447 if ( gSMBThreadQuitEvent )
449 CloseHandle( gSMBThreadQuitEvent );
450 gSMBThreadQuitEvent = NULL;
4887 SetEvent( gSMBThreadQuitEvent );
5012 if ( !gSMBThreadQuitEvent )
5014 gSMBThreadQuitEvent = CreateEvent( NULL, FALSE, FALSE, NULL );
5015 require_action( gSMBThreadQuitEvent != NULL, exit, err = GetLastError() );

Completed in 2844 milliseconds