- 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:
ReactOS Portable Systems Group 2008-07-22 06:04:06 +00:00
parent 2b398fba13
commit 4d7d1dfc95

View file

@ -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;