mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
[HALX86] Use InterlockedBitTestAndSetAffinity instead of InterlockedBitTestAndSet
This commit is contained in:
parent
d87b45bee7
commit
d8d46a00c3
1 changed files with 2 additions and 3 deletions
|
@ -54,9 +54,8 @@ HalInitializeProcessor(
|
||||||
KeGetPcr()->StallScaleFactor = INITIAL_STALL_COUNT;
|
KeGetPcr()->StallScaleFactor = INITIAL_STALL_COUNT;
|
||||||
|
|
||||||
/* Update the interrupt affinity and processor mask */
|
/* Update the interrupt affinity and processor mask */
|
||||||
InterlockedBitTestAndSet((PLONG)&HalpActiveProcessors, ProcessorNumber);
|
InterlockedBitTestAndSetAffinity(&HalpActiveProcessors, ProcessorNumber);
|
||||||
InterlockedBitTestAndSet((PLONG)&HalpDefaultInterruptAffinity,
|
InterlockedBitTestAndSetAffinity(&HalpDefaultInterruptAffinity, ProcessorNumber);
|
||||||
ProcessorNumber);
|
|
||||||
|
|
||||||
/* Register routines for KDCOM */
|
/* Register routines for KDCOM */
|
||||||
HalpRegisterKdSupportFunctions();
|
HalpRegisterKdSupportFunctions();
|
||||||
|
|
Loading…
Reference in a new issue