Changeset 829 for trunk/dll/killproc.c
- Timestamp:
- Sep 3, 2007, 4:48:29 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/killproc.c
r828 r829 17 17 20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat 18 18 02 Sep 07 GKY Replaced DosQProcStatus with DosQuerySysState to fix trap in thunk code 19 19 02 Sep 07 SHL Expand FillKillListThread2 stack to avoid exception in __TNK 20 20 21 21 ***********************************************************************/ … … 95 95 GetPString(IDS_OUTOFMEMORY)); 96 96 else { 97 rc = DosQProcStatus( pbh, USHRT_MAX);97 rc = DosQProcStatus((ULONG *)pbh, USHRT_MAX); 98 98 if (!rc) { 99 99 ppi = pbh->ppi; … … 411 411 if (fUseQProcStat) { 412 412 if (_beginthread(FillKillListThread2, 413 NULL, 65536 , (PVOID) &hwnd) != -1)414 DosSleep(100); //05 Aug 07 GKY 250413 NULL, 65536 + 8192, (PVOID)&hwnd) != -1) 414 DosSleep(100); // 05 Aug 07 GKY 250 415 415 else 416 416 WinDismissDlg(hwnd, 0); … … 425 425 if (_beginthread(FillKillListThread, 426 426 NULL, 65536, (PVOID) & hwnd) != -1) 427 DosSleep(100); //05 Aug 07 GKY 250427 DosSleep(100); // 05 Aug 07 GKY 250 428 428 else 429 429 WinDismissDlg(hwnd, 0);
Note:
See TracChangeset
for help on using the changeset viewer.