class: AbstractOperatingSystem
authorStefan Vogel <sv@exept.de>
Tue, 08 Sep 2015 17:28:20 +0200
changeset 18743 93db55dd8c0b
parent 18742 12d1703e876d
child 18744 0f193129cde0
child 18745 89ae65c02a3e
class: AbstractOperatingSystem added: #getNumberOfProcessorsOnline removed: #getNumberOfOnlineProcessors getNumberOfOnlineProcessors makes Borland linker crash!!
AbstractOperatingSystem.st
--- a/AbstractOperatingSystem.st	Tue Sep 08 17:27:41 2015 +0200
+++ b/AbstractOperatingSystem.st	Tue Sep 08 17:28:20 2015 +0200
@@ -3855,14 +3855,14 @@
     "Modified: / 17-11-2004 / 01:43:35 / cg"
 !
 
-getNumberOfOnlineProcessors
-    "answer the number of physical processors in the system which are currently online"
+getNumberOfProcessors
+    "answer the number of physical processors in the system"
 
     self subclassResponsibility
 !
 
-getNumberOfProcessors
-    "answer the number of physical processors in the system"
+getNumberOfProcessorsOnline
+    "answer the number of physical processors in the system which are currently online"
 
     self subclassResponsibility
 !