From b14104f1e7eda8d696222dd4ba7ef6a34f946ac4 Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Fri, 10 Dec 1999 22:25:18 +0000 Subject: [PATCH] ooops... fix that.. svn path=/trunk/; revision=848 --- reactos/include/ddk/pstypes.h | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/reactos/include/ddk/pstypes.h b/reactos/include/ddk/pstypes.h index 8e12c7680c1..2c5a23f4e72 100644 --- a/reactos/include/ddk/pstypes.h +++ b/reactos/include/ddk/pstypes.h @@ -396,23 +396,4 @@ typedef struct _EPROCESS #define PROCESS_STATE_TERMINATED (1) #define PROCESS_STATE_ACTIVE (2) -// Added by PJS -// Thread priority adjustments, relative to process base priority - -#define THREAD_PRIORITY_IDLE -15 // Idle thread priority, within priority class -#define THREAD_PRIORITY_LOWEST -2 // Extra low thread priority -#define THREAD_PRIORITY_BELOW_NORMAL -1 // Slightly lower priority -#define THREAD_PRIORITY_NORMAL 0 // No priority change -#define THREAD_PRIORITY_ABOVE_NORMAL 1 // Boost some -#define THREAD_PRIORITY_HIGHEST 2 // Boost more -#define THREAD_PRIORITY_TIME_CRITICAL 15 // Maximum boost, within priority class - -// Process base priority classes, compatable with windows, dont ask where they got these values. - -#define REALTIME_PRIORITY_CLASS 0x00000020 // Real Time priority class -#define HIGH_PRIORITY_CLASS 0x00000040 // High priority class -#define NORMAL_PRIORITY_CLASS 0x00000080 // Default process priority class -#define IDLE_PRIORITY_CLASS 0x00000100 // Idle Priority class - #endif /* __INCLUDE_DDK_PSTYPES_H */ -