mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[ASM][NDK][NTOS] Rename Self to SelfPcr in the KIPCR structure.
This commit is contained in:
parent
e00cc9728c
commit
631a14ff64
5 changed files with 7 additions and 7 deletions
|
@ -25,7 +25,7 @@ VOID NTAPI RtlpBreakWithStatusInstruction(VOID);
|
|||
|
||||
#if defined(_M_IX86)
|
||||
|
||||
#define KPCR_SELF_PCR_OFFSET FIELD_OFFSET(KPCR, Self)
|
||||
#define KPCR_SELF_PCR_OFFSET FIELD_OFFSET(KPCR, SelfPcr)
|
||||
#define KPCR_CURRENT_PRCB_OFFSET FIELD_OFFSET(KPCR, Prcb)
|
||||
#define KPCR_CONTAINED_PRCB_OFFSET FIELD_OFFSET(KPCR, PrcbData)
|
||||
#define KPCR_INITIAL_STACK_OFFSET 0
|
||||
|
|
|
@ -2112,7 +2112,7 @@ KdbpCmdPcr(
|
|||
" Tib.FiberData/Version: 0x%08x\n"
|
||||
" Tib.ArbitraryUserPointer: 0x%08x\n"
|
||||
" Tib.Self: 0x%08x\n"
|
||||
" Self: 0x%08x\n"
|
||||
" SelfPcr: 0x%08x\n"
|
||||
" PCRCB: 0x%08x\n"
|
||||
" Irql: 0x%02x\n"
|
||||
" IRR: 0x%08x\n"
|
||||
|
@ -2133,7 +2133,7 @@ KdbpCmdPcr(
|
|||
" InterruptMode: 0x%08x\n",
|
||||
Pcr->NtTib.ExceptionList, Pcr->NtTib.StackBase, Pcr->NtTib.StackLimit,
|
||||
Pcr->NtTib.SubSystemTib, Pcr->NtTib.FiberData, Pcr->NtTib.ArbitraryUserPointer,
|
||||
Pcr->NtTib.Self, Pcr->Self, Pcr->Prcb, Pcr->Irql, Pcr->IRR, Pcr->IrrActive,
|
||||
Pcr->NtTib.Self, Pcr->SelfPcr, Pcr->Prcb, Pcr->Irql, Pcr->IRR, Pcr->IrrActive,
|
||||
Pcr->IDR, Pcr->KdVersionBlock, Pcr->IDT, Pcr->GDT, Pcr->TSS,
|
||||
Pcr->MajorVersion, Pcr->MinorVersion, Pcr->SetMember, Pcr->StallScaleFactor,
|
||||
Pcr->Number, Pcr->SecondLevelCacheAssociativity,
|
||||
|
|
|
@ -345,7 +345,7 @@ KiInitializePcr(IN ULONG ProcessorNumber,
|
|||
Pcr->PrcbData.CurrentThread = IdleThread;
|
||||
|
||||
/* Set pointers to ourselves */
|
||||
Pcr->Self = (PKPCR)Pcr;
|
||||
Pcr->SelfPcr = (PKPCR)Pcr;
|
||||
Pcr->Prcb = &Pcr->PrcbData;
|
||||
|
||||
/* Set the PCR Version */
|
||||
|
|
|
@ -369,7 +369,7 @@ OFFSET(PcTssCopy, KIPCR, TssCopy),
|
|||
OFFSET(PcContextSwitches, KIPCR, ContextSwitches),
|
||||
OFFSET(PcSetMemberCopy, KIPCR, SetMemberCopy),
|
||||
OFFSET(PcTeb, KIPCR, NtTib.Self),
|
||||
OFFSET(PcSelfPcr, KIPCR, Self),
|
||||
OFFSET(PcSelfPcr, KIPCR, SelfPcr),
|
||||
OFFSET(PcPrcb, KIPCR, Prcb),
|
||||
OFFSET(PcIrql, KIPCR, Irql),
|
||||
OFFSET(PcIRR, KIPCR, IRR),
|
||||
|
@ -582,7 +582,7 @@ OFFSET(KPCR_EXCEPTION_LIST, KPCR, NtTib.ExceptionList),
|
|||
OFFSET(KPCR_PERF_GLOBAL_GROUP_MASK, KIPCR, PerfGlobalGroupMask),
|
||||
OFFSET(KPCR_CONTEXT_SWITCHES, KPCR, ContextSwitches),
|
||||
OFFSET(KPCR_TEB, KIPCR, Used_Self),
|
||||
OFFSET(KPCR_SELF, KIPCR, Self),
|
||||
OFFSET(KPCR_SELF, KIPCR, SelfPcr),
|
||||
OFFSET(KPCR_PRCB, KPCR, Prcb),
|
||||
OFFSET(KPCR_IDT, KIPCR, IDT),
|
||||
OFFSET(KPCR_GDT, KIPCR, GDT),
|
||||
|
|
|
@ -746,7 +746,7 @@ typedef struct _KIPCR
|
|||
PVOID Used_Self;
|
||||
};
|
||||
};
|
||||
struct _KPCR *Self;
|
||||
struct _KPCR *SelfPcr;
|
||||
struct _KPRCB *Prcb;
|
||||
KIRQL Irql;
|
||||
ULONG IRR;
|
||||
|
|
Loading…
Reference in a new issue