mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
- Easy there cowboy, just because you can write good code doesn't mean you shouldn't even try building it.
- Fix x86 build failure, good thing everyone is probably asleep. svn path=/trunk/; revision=34658
This commit is contained in:
parent
2b398fba13
commit
4d7d1dfc95
1 changed files with 4 additions and 0 deletions
|
@ -1196,7 +1196,11 @@ QSI_DEF(SystemInterruptInformation)
|
|||
{
|
||||
Prcb = KiProcessorBlock[i];
|
||||
Pcr = CONTAINING_RECORD(Prcb, KPCR, Prcb);
|
||||
#ifdef _M_ARM // This code should probably be done differently
|
||||
sii->ContextSwitches = Pcr->ContextSwitches;
|
||||
#else
|
||||
sii->ContextSwitches = ((PKIPCR)Pcr)->ContextSwitches;
|
||||
#endif
|
||||
sii->DpcCount = Prcb->DpcData[0].DpcCount;
|
||||
sii->DpcRate = Prcb->DpcRequestRate;
|
||||
sii->TimeIncrement = ti;
|
||||
|
|
Loading…
Reference in a new issue