changed comment: #getNumberOfProcessors
authorStefan Vogel <sv@exept.de>
Wed, 20 Jan 2010 12:41:07 +0100
changeset 12649 7d8aad540a9b
parent 12648 d3c1fea8f18d
child 12650 ebc0e20b6098
changed comment: #getNumberOfProcessors
Win32OperatingSystem.st
--- a/Win32OperatingSystem.st	Wed Jan 20 12:37:23 2010 +0100
+++ b/Win32OperatingSystem.st	Wed Jan 20 12:41:07 2010 +0100
@@ -7647,16 +7647,17 @@
 !
 
 getNumberOfProcessors
+    "answer the number of physical processors in the system"
 
     %{
-	SYSTEM_INFO sInfo;
-	GetSystemInfo(&sInfo);
-
-	return __mkSmallInteger(sInfo.dwNumberOfProcessors);
+        SYSTEM_INFO sInfo;
+        GetSystemInfo(&sInfo);
+
+        return __mkSmallInteger(sInfo.dwNumberOfProcessors);
     %}.
 
     "
-	self getNumberOfProcessors
+        self getNumberOfProcessors
     "
 !
 
@@ -16416,11 +16417,11 @@
 !Win32OperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.385 2010-01-15 10:06:08 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.386 2010-01-20 11:41:07 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.385 2010-01-15 10:06:08 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.386 2010-01-20 11:41:07 stefan Exp $'
 ! !
 
 Win32OperatingSystem initialize!