Hardware/CPU/CPUID.cs
changeset 102 9620449d2620
parent 95 249d57f82cf8
child 105 f46d163ffba2
     1.1 --- a/Hardware/CPU/CPUID.cs	Mon Apr 26 19:22:42 2010 +0000
     1.2 +++ b/Hardware/CPU/CPUID.cs	Tue Apr 27 07:31:46 2010 +0000
     1.3 @@ -194,7 +194,7 @@
     1.4  
     1.5        processorId = (uint)(apicId >> (int)(coreMaskWith + threadMaskWith));
     1.6        coreId = (uint)((apicId >> (int)(threadMaskWith)) 
     1.7 -        - (processorId << (int)(coreMaskWith + threadMaskWith)));
     1.8 +        - (processorId << (int)(coreMaskWith)));
     1.9        threadId = apicId
    1.10          - (processorId << (int)(coreMaskWith + threadMaskWith))
    1.11          - (coreId << (int)(threadMaskWith));