From 81310b4307a6d6a4b206b5afac24364d8b11f368 Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Sat, 11 Dec 1999 17:19:32 +0000 Subject: [PATCH] added DPC for timers to KTHREAD, and fixed ApcState svn path=/trunk/; revision=853 --- reactos/include/ddk/pstypes.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reactos/include/ddk/pstypes.h b/reactos/include/ddk/pstypes.h index 2c5a23f4e72..9e4abedc29e 100644 --- a/reactos/include/ddk/pstypes.h +++ b/reactos/include/ddk/pstypes.h @@ -158,8 +158,8 @@ typedef struct _KAPC_STATE { LIST_ENTRY ApcListHead[2]; struct _KPROCESS* Process; - UCHAR KernelApcInProgress; - UCHAR KernelApcPending; + ULONG KernelApcInProgress; + ULONG KernelApcPending; USHORT UserApcPending; } KAPC_STATE, *PKAPC_STATE; @@ -201,6 +201,7 @@ typedef struct _KTHREAD UCHAR Pad; PKQUEUE Queue; KTIMER Timer; + KDPC TimerDpc; // Added by Phillip Susi for internal KeAddThreadTimeout() impl. LIST_ENTRY QueueListEntry; KAFFINITY Affinity; UCHAR Preempted;