mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 15:55:57 +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
|
@ -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…
Add table
Add a link
Reference in a new issue