0
私は2つのアプリケーション(exe)を持っています。引数がデッドロックのC++ CreateProcess
最初のもの(client.exe
)は単に引数を出力:
#include <iostream>
int main(int argc, char** argv)
{
std::cout << "Have " << argc << " arguments:" << std::endl;
for (int i = 0; i < argc; ++i)
{
std::cout << argv[i] << std::endl;
}
return 0;
}
第1(SandBox.exe
)は、いくつかの引数を持つ最初の実行:からclient.exe
を実行することにより
#include <iostream>
#include <Windows.h>
void startup(LPCTSTR lpApplicationName, LPSTR param)
{
// additional information
STARTUPINFO si;
PROCESS_INFORMATION pi;
// set the size of the structures
ZeroMemory(&si, sizeof(si));
si.cb = sizeof(si);
ZeroMemory(&pi, sizeof(pi));
// start the program up
CreateProcess(lpApplicationName, // the path
param,//NULL,//argv[1], // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
FALSE, // Set handle inheritance to FALSE
0, // No creation flags
NULL, // Use parent's environment block
NULL, // Use parent's starting directory
&si, // Pointer to STARTUPINFO structure
&pi // Pointer to PROCESS_INFORMATION structure
);
// Close process and thread handles.
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
}
int main()
{
startup(TEXT("client.exe"), TEXT("client.exe thisIsMyFirstParaMeter AndTheSecond"));
return 0;
}
をSandBox.exe
、出力は非常に奇妙で、client.exeは決して終了せず、デッドロックのままです。
ここでの問題は何ですか?
私は(私は孤立client.exe
を実行したときのような)のようないくつかの出力を期待していた。
は
デッドロックであることをどのように知っていますか? –
'CreateProcess'の2番目のパラメータは、変更可能な文字列AFAIKを指していなければなりません。 – molbdnilo
'main()'でハンドルを閉じる前に 'WaitForSingleObject(pi.hProcess、INFINITE);'を使ってクライアントプロセスの終了を待つとどうなりますか? – vasek