mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[NDK] Fix the type of KPROCESS::ActiveProcessors
Also fix related logic in KiSwapProcess
This commit is contained in:
parent
158812409d
commit
de1b195837
2 changed files with 4 additions and 6 deletions
|
@ -278,13 +278,11 @@ KiSwapProcess(IN PKPROCESS NewProcess,
|
||||||
IN PKPROCESS OldProcess)
|
IN PKPROCESS OldProcess)
|
||||||
{
|
{
|
||||||
PKIPCR Pcr = (PKIPCR)KeGetPcr();
|
PKIPCR Pcr = (PKIPCR)KeGetPcr();
|
||||||
#ifdef CONFIG_SMP
|
|
||||||
LONG SetMember;
|
|
||||||
|
|
||||||
|
#ifdef CONFIG_SMP
|
||||||
/* Update active processor mask */
|
/* Update active processor mask */
|
||||||
SetMember = (LONG)Pcr->SetMember;
|
InterlockedXor64((PLONG64)&NewProcess->ActiveProcessors, Pcr->Prcb.SetMember);
|
||||||
InterlockedXor((PLONG)&NewProcess->ActiveProcessors, SetMember);
|
InterlockedXor64((PLONG64)&OldProcess->ActiveProcessors, Pcr->Prcb.SetMember);
|
||||||
InterlockedXor((PLONG)&OldProcess->ActiveProcessors, SetMember);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Update CR3 */
|
/* Update CR3 */
|
||||||
|
|
|
@ -1988,7 +1988,7 @@ typedef struct _KPROCESS
|
||||||
UCHAR Iopl;
|
UCHAR Iopl;
|
||||||
UCHAR Unused;
|
UCHAR Unused;
|
||||||
#endif
|
#endif
|
||||||
volatile ULONG ActiveProcessors;
|
volatile KAFFINITY ActiveProcessors;
|
||||||
ULONG KernelTime;
|
ULONG KernelTime;
|
||||||
ULONG UserTime;
|
ULONG UserTime;
|
||||||
LIST_ENTRY ReadyListHead;
|
LIST_ENTRY ReadyListHead;
|
||||||
|
|
Loading…
Reference in a new issue