CreateProcess不在主线程中

时间:2015-02-11 16:32:38

标签: c++ interprocess

我使用CreateProcess()从我的C ++代码启动另一个程序。 helppage说它

  

创建一个新进程及其主线程。新进程在调用进程的安全上下文中运行。

我想在他自己的主题中拥有它,因此应用程序将继续运行。有没有简单的方法呢?我并不熟悉助推器和公司。

我的代码:

bool startup(LPWSTR lpApplicationName)
{
   STARTUPINFO si;
    PROCESS_INFORMATION pi;

    ZeroMemory( &si, sizeof(si) );
    si.cb = sizeof(si);
    ZeroMemory( &pi, sizeof(pi) );

    // Start the child process. 
    if( !CreateProcess( NULL,   // No module name (use command line)
        lpApplicationName,        // 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
    ) 
    {
        printf( "CreateProcess failed (%d).\n", GetLastError() );
        return false;
    }

    // Wait until child process exits.
    WaitForSingleObject( pi.hProcess, INFINITE );

    // Close process and thread handles. 
    CloseHandle( pi.hProcess );
    CloseHandle( pi.hThread );
    return true;
}

以及如何调用该函数:

int _tmain(int argc, _TCHAR* argv[])
{
wchar_t path[] = L"C:\\path\\to\\paridise.exe";
startup(path);
}

1 个答案:

答案 0 :(得分:0)

转换ElderBug在回复中的评论

您的代码中的问题是在CreateProcess调用之后存在无限等待:

WaitForSingleObject(pi.hProcess,INFINITE);

只需注释一下,程序将不会停止执行。

我也犯了同样的错误,偶然发现了这个问题。事实是,我们很多人都是从MSDN示例here(没有太多关注)中获取代码的,实际上这是无限等待的。