Changeset 7532 for trunk/src/kernel32/wprocess.cpp
- Timestamp:
- Dec 3, 2001, 1:13:10 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/wprocess.cpp
r7519 r7532 1 /* $Id: wprocess.cpp,v 1.13 8 2001-12-01 20:41:38sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.139 2001-12-03 12:13:10 sandervl Exp $ */ 2 2 3 3 /* … … 183 183 winteb->tls_ptr = &winteb->tls_array[0]; /* 2c Pointer to TLS array */ 184 184 winteb->process = &ProcessPDB; /* 30 owning process (used by NT3.51 applets)*/ 185 185 186 winteb->delta_priority = THREAD_PRIORITY_NORMAL; 186 187 winteb->process = &ProcessPDB; 187 188 //// winteb->exit_code = 0x103; /* STILL_ACTIVE */ … … 1935 1936 else return O32_WaitForInputIdle(hProcess, dwTimeOut); 1936 1937 } 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 }1958 1938 /********************************************************************** 1959 1939 * LoadModule (KERNEL32.499)
Note:
See TracChangeset
for help on using the changeset viewer.