Ignore:
Timestamp:
Dec 3, 2001, 1:13:10 PM (24 years ago)
Author:
sandervl
Message:

priority updates/changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/wprocess.cpp

    r7519 r7532  
    1 /* $Id: wprocess.cpp,v 1.138 2001-12-01 20:41:38 sandervl Exp $ */
     1/* $Id: wprocess.cpp,v 1.139 2001-12-03 12:13:10 sandervl Exp $ */
    22
    33/*
     
    183183    winteb->tls_ptr     = &winteb->tls_array[0];   /* 2c Pointer to TLS array */
    184184    winteb->process     = &ProcessPDB;             /* 30 owning process (used by NT3.51 applets)*/
    185 
     185   
     186    winteb->delta_priority  = THREAD_PRIORITY_NORMAL;
    186187    winteb->process         = &ProcessPDB;
    187188////    winteb->exit_code       = 0x103; /* STILL_ACTIVE */
     
    19351936  else  return O32_WaitForInputIdle(hProcess, dwTimeOut);
    19361937}
    1937 //******************************************************************************
    1938 //******************************************************************************
    1939 VOID WIN32API Sleep(DWORD arg1)
    1940 {
    1941     dprintf2(("KERNEL32:  Sleep %d\n", arg1));
    1942     O32_Sleep(arg1);
    1943 }
    1944 //******************************************************************************
    1945 //******************************************************************************
    1946 DWORD WIN32API GetPriorityClass(HANDLE hProcess)
    1947 {
    1948     dprintf(("KERNEL32: GetPriorityClass %x", hProcess));
    1949     return O32_GetPriorityClass(hProcess);
    1950 }
    1951 //******************************************************************************
    1952 //******************************************************************************
    1953 BOOL WIN32API SetPriorityClass(HANDLE hProcess, DWORD dwPriority)
    1954 {
    1955     dprintf(("KERNEL32: SetPriorityClass %x %x", hProcess, dwPriority));
    1956     return O32_SetPriorityClass(hProcess, dwPriority);
    1957 }
    19581938/**********************************************************************
    19591939 * LoadModule    (KERNEL32.499)
Note: See TracChangeset for help on using the changeset viewer.