Searched refs:pipeThreads (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/sqlite3/tea/win/ |
H A D | nmakehlp.c | 205 HANDLE hProcess, h, pipeThreads[2]; in CheckForCompilerFeature() local 298 pipeThreads[0] = CreateThread(NULL, 0, ReadFromPipe, &Out, 0, &threadID); in CheckForCompilerFeature() 299 pipeThreads[1] = CreateThread(NULL, 0, ReadFromPipe, &Err, 0, &threadID); in CheckForCompilerFeature() 312 WaitForMultipleObjects(2, pipeThreads, TRUE, 500); in CheckForCompilerFeature() 313 CloseHandle(pipeThreads[0]); in CheckForCompilerFeature() 314 CloseHandle(pipeThreads[1]); in CheckForCompilerFeature() 340 HANDLE hProcess, h, pipeThreads[2]; in CheckForLinkerFeature() local 432 pipeThreads[0] = CreateThread(NULL, 0, ReadFromPipe, &Out, 0, &threadID); in CheckForLinkerFeature() 433 pipeThreads[1] = CreateThread(NULL, 0, ReadFromPipe, &Err, 0, &threadID); in CheckForLinkerFeature() 446 WaitForMultipleObjects(2, pipeThreads, TRUE, 500); in CheckForLinkerFeature() [all …]
|