mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
kernel32: Print in the trace pid and tid of the created process.
This commit is contained in:
parent
b0f34a600f
commit
fab78cdc8d
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue