Changeset 829 for trunk/dll/killproc.c


Ignore:
Timestamp:
Sep 3, 2007, 4:48:29 AM (18 years ago)
Author:
Steven Levine
Message:

Update DosQProcStatus declarations for OpenWatcom compat
Layout KILL_FRAME to avoid text overlap

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/killproc.c

    r828 r829  
    1717  20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat
    1818  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
    2020
    2121***********************************************************************/
     
    9595              GetPString(IDS_OUTOFMEMORY));
    9696  else {
    97     rc = DosQProcStatus(pbh, USHRT_MAX);
     97    rc = DosQProcStatus((ULONG *)pbh, USHRT_MAX);
    9898    if (!rc) {
    9999      ppi = pbh->ppi;
     
    411411      if (fUseQProcStat) {
    412412        if (_beginthread(FillKillListThread2,
    413                          NULL, 65536, (PVOID) & hwnd) != -1)
    414           DosSleep(100);//05 Aug 07 GKY 250
     413                         NULL, 65536 + 8192, (PVOID)&hwnd) != -1)
     414          DosSleep(100);                // 05 Aug 07 GKY 250
    415415        else
    416416            WinDismissDlg(hwnd, 0);
     
    425425        if (_beginthread(FillKillListThread,
    426426                         NULL, 65536, (PVOID) & hwnd) != -1)
    427           DosSleep(100); //05 Aug 07 GKY 250
     427          DosSleep(100);                // 05 Aug 07 GKY 250
    428428        else
    429429          WinDismissDlg(hwnd, 0);
Note: See TracChangeset for help on using the changeset viewer.