kernel32: Print in the trace pid and tid of the created process.

This commit is contained in:
Dmitry Timoshkov 2008-05-06 17:25:32 +09:00 committed by Alexandre Julliard
parent b0f34a600f
commit fab78cdc8d

View file

@ -1785,6 +1785,8 @@ BOOL WINAPI CreateProcessW( LPCWSTR app_name, LPWSTR cmd_line, LPSECURITY_ATTRIB
if (tidy_cmdline != cmd_line) HeapFree( GetProcessHeap(), 0, tidy_cmdline );
if (envW != env) HeapFree( GetProcessHeap(), 0, envW );
HeapFree( GetProcessHeap(), 0, unixdir );
if (retv)
TRACE( "started process pid %04x tid %04x\n", info->dwProcessId, info->dwThreadId );
return retv;
}