Hardware/CPU/CPUGroup.cs
changeset 427 39ed1a16c32a
parent 407 c9dfdbd59bf8
     1.1 --- a/Hardware/CPU/CPUGroup.cs	Sun Dec 28 17:54:26 2014 +0000
     1.2 +++ b/Hardware/CPU/CPUGroup.cs	Sun Dec 28 22:42:36 2014 +0000
     1.3 @@ -4,7 +4,7 @@
     1.4    License, v. 2.0. If a copy of the MPL was not distributed with this
     1.5    file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.6   
     1.7 -  Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
     1.8 +  Copyright (C) 2009-2014 Michael Möller <mmoeller@openhardwaremonitor.org>
     1.9  	
    1.10  */
    1.11  
    1.12 @@ -23,7 +23,7 @@
    1.13      private static CPUID[][] GetProcessorThreads() {
    1.14  
    1.15        List<CPUID> threads = new List<CPUID>();
    1.16 -      for (int i = 0; i < 32; i++) {
    1.17 +      for (int i = 0; i < 64; i++) {
    1.18          try {
    1.19            threads.Add(new CPUID(i));
    1.20          } catch (ArgumentOutOfRangeException) { }