您好我正在使用CreateProcess创建多个进程 我需要等待所有人完成,分析结果。
我无法使用WaitForSingleObject,因为我需要同时运行所有进程。
由于每个进程都有句柄Process_Information(hProcess) 我认为可以使用WaitForMultipleObjects,但父进程在没有等待孩子的情况下结束。 是否可以使用WaitForMultipleObjects或有更好的方法?
这就是我创建流程的方式:
#define MAX_PROCESS 3
STARTUPINFO si[MAX_PROCESS];
PROCESS_INFORMATION pi[MAX_PROCESS];
WIN32_FIND_DATA fileData;
HANDLE find;
int j=0, t=0;
ZeroMemory(&si, sizeof(si));
for (t = 0; t < MAX_PROCESS; t++)
si[t].cb = sizeof(si[0]);
ZeroMemory(&pi, sizeof(pi));
while (FindNextFile(find, &fileData) != 0)
{
// Start the child process.
if (!CreateProcess(_T("C:\\Users\\Kumppler\\Documents\\Visual Studio 2010\\Projects\ \teste3\\Debug\\teste3.exe"), // No module name (use command line)
aux2, // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
TRUE, // Set handle inheritance to FALSE
0, // No creation flags
NULL, // Use parent's environment block
NULL, // Use parent's starting directory
&si[j], // Pointer to STARTUPINFO structure
&pi[j]) // Pointer to PROCESS_INFORMATION structure
)
{
printf("CreateProcess failed (%d).\n", GetLastError());
return;
}
j++;
//find next file related
}
FindClose(find);
WaitForMultipleObjects(MAX_PROCESS, &pi[j].hProcess, FALSE, INFINITE);
//wait and analyze results
顺便说一下,我试图不使用线程。
答案 0 :(得分:3)
WaitForMultipleObjects需要句柄数组:
HANDLE hanldes[MAX_PROCESS];
for (int i = 0; i < MAX_PROCESS; ++i)
{
handles[i] = pi[i].hProcess;
}
WaitForMultipleObjects(MAX_PROCESS, handles, TRUE, INFINITE);
此外,您应该知道WaitForMultipleObjects的句柄的最大数组大小限制为MAXIMUM_WAIT_OBJECTS(64)。
答案 1 :(得分:2)
如果你想等待所有HANDLEs将'bWaitAll'(第三个参数)设置为'TRUE'。