Changeset 6340 for trunk/src/kernel32/wprocess.cpp
- Timestamp:
- Jul 15, 2001, 5:18:58 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/wprocess.cpp
r6305 r6340 1 /* $Id: wprocess.cpp,v 1.1 29 2001-07-10 20:41:50 birdExp $ */1 /* $Id: wprocess.cpp,v 1.130 2001-07-15 15:18:58 sandervl Exp $ */ 2 2 3 3 /* … … 43 43 #include <wprocess.h> 44 44 #include "mmap.h" 45 #include "initterm.h" 45 46 46 47 #define DBG_LOCALLOG DBG_wprocess … … 1869 1870 //block until the launched app waits for input (or a timeout of 15 seconds) 1870 1871 //TODO: Shouldn't call Open32, but the api in user32.. 1871 rc = O32_WaitForInputIdle(procinfo.hProcess, 15000); 1872 if(rc != 0) { 1873 dprintf(("WinExec: WaitForInputIdle %x returned %x", procinfo.hProcess, rc)); 1872 if(fVersionWarp3) { 1873 Sleep(1000); //WaitForInputIdle not available in Warp 3 1874 } 1875 else { 1876 rc = O32_WaitForInputIdle(procinfo.hProcess, 15000); 1877 if(rc != 0) { 1878 dprintf(("WinExec: WaitForInputIdle %x returned %x", procinfo.hProcess, rc)); 1879 } 1874 1880 } 1875 1881 CloseHandle(procinfo.hThread);
Note:
See TracChangeset
for help on using the changeset viewer.