我正在尝试创建一个跨平台功能,用于使用Unix和Windows创建新进程。
使用fork()& Unix中的exec()很容易。虽然我在Windows中无法搞清楚。我相信你知道exec函数不会返回孩子的pid。在Unix中,fork会这样做。但Windows中没有分叉。所以我尝试使用WinAPI的CreateProcess,但没有找到添加命令行参数的简单方法。
所以我有点迷失在这里,如果有人知道用命令行参数创建一个新进程的方法并将孩子的pid返回给父进程,我将非常感激你是否愿意与我分享你的知识。< / p>
答案 0 :(得分:3)
您可以在windows中使用createprocess()函数。
其签名位于
之下BOOL WINAPI CreateProcess(
_In_opt_ LPCTSTR lpApplicationName,
_Inout_opt_ LPTSTR lpCommandLine,
_In_opt_ LPSECURITY_ATTRIBUTES lpProcessAttributes,
_In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes,
_In_ BOOL bInheritHandles,
_In_ DWORD dwCreationFlags,
_In_opt_ LPVOID lpEnvironment,
_In_opt_ LPCTSTR lpCurrentDirectory,
_In_ LPSTARTUPINFO lpStartupInfo,
_Out_ LPPROCESS_INFORMATION lpProcessInformation
);
示例:
STARTUPINFO si;
PROCESS_INFORMATION pi; //This structure has process id
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
if( argc != 2 )
{
printf("Usage: %s [cmdline]\n", argv[0]);
return;
}
// Start the child process.
if( !CreateProcess( NULL, // No module name (use command line)
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
)
{
printf( "CreateProcess failed (%d).\n", GetLastError() );
return;
}
// Wait until child process exits.
WaitForSingleObject( pi.hProcess, INFINITE );
// Close process and thread handles.
CloseHandle( pi.hProcess );
CloseHandle( pi.hThread );
http://msdn.microsoft.com/en-us/library/windows/desktop/ms682512(v=vs.85).aspx