webengine/osswebengine/WebKitTools/Scripts/num-cpus
author Dario Sestito <darios@symbian.org>
Wed, 13 Jan 2010 15:52:45 +0000
branchCompilerCompatibility
changeset 31 3dbb0284a087
parent 0 dd21522fd290
permissions -rw-r--r--
Add dummy tag to test CompilerCompatibility trigger

#!/usr/bin/perl

use strict;
use warnings;

use Win32API::Registry 0.21 qw( :ALL );


my $key;
my $i = 0;
while (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\$i", 0, KEY_READ, $key)) {
    $i++;
    RegCloseKey($key);
}

print "$i\n";