mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +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;
|
||||
|
||||
/* Update the interrupt affinity and processor mask */
|
||||
InterlockedBitTestAndSet((PLONG)&HalpActiveProcessors, ProcessorNumber);
|
||||
InterlockedBitTestAndSet((PLONG)&HalpDefaultInterruptAffinity,
|
||||
ProcessorNumber);
|
||||
InterlockedBitTestAndSetAffinity(&HalpActiveProcessors, ProcessorNumber);
|
||||
InterlockedBitTestAndSetAffinity(&HalpDefaultInterruptAffinity, ProcessorNumber);
|
||||
|
||||
/* Register routines for KDCOM */
|
||||
HalpRegisterKdSupportFunctions();
|
||||
|
|
Loading…
Reference in a new issue