s/BenchmarkPlatform.st
changeset 283 51f9245f0cb2
parent 262 8d2849dd3227
child 285 0cf54ee76de5
--- a/s/BenchmarkPlatform.st	Fri Sep 18 12:35:53 2015 +0100
+++ b/s/BenchmarkPlatform.st	Mon Sep 21 23:31:06 2015 +0100
@@ -1,5 +1,7 @@
 "{ Package: 'jv:calipel/s' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#BenchmarkPlatform
 	instanceVariableNames:'instruments'
 	classVariableNames:'Current'
@@ -93,15 +95,23 @@
 !
 
 configurationStringOS
-    self subclassResponsibility
+    "Return the operating system on which the system is running such as
+     'Linux' or 'Windows XP'"
+
+    ^ self subclassResponsibility
 
     "Created: / 22-06-2013 / 22:55:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 21-09-2015 / 15:36:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-configurationStringRuntime
-    self subclassResponsibility
+configurationStringRuntime  
+    "Return the runtime identification string, for example
+     'Smalltalk/X 6.2.5 642bit' or 'Pharo 5.0 32bit'."
+
+    ^ self subclassResponsibility
 
     "Created: / 22-06-2013 / 22:55:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 21-09-2015 / 15:38:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !BenchmarkPlatform methodsFor:'exit'!