ObjectMemory.st
changeset 23281 96b9a76d7a27
parent 23252 5490af08a944
child 23283 40916dbddcab
--- a/ObjectMemory.st	Wed Aug 15 14:47:26 2018 +0200
+++ b/ObjectMemory.st	Wed Aug 15 14:47:33 2018 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1992 by Claus Gittinger
 	      All Rights Reserved
@@ -2696,7 +2698,7 @@
                 BackgroundCollectProcess := nil
             ]
         ] newProcess
-            name:'background collector';
+            name:'Smalltalk: background collector';
             priority:aPriority;
             restartable:true;
             beSystemProcess;
@@ -2721,6 +2723,7 @@
 
     "Modified: / 14-08-1998 / 13:09:19 / cg"
     "Modified: / 21-02-2017 / 12:30:44 / stefan"
+    "Modified: / 15-08-2018 / 14:45:31 / Claus Gittinger"
 !
 
 stopBackgroundCollector
@@ -4622,7 +4625,7 @@
                 FinalizationSemaphore := nil
             ]
         ] newProcess
-            name:'background finalizer';
+            name:'Smalltalk: background finalizer';
             priority:aPriority;
             restartable:true;
             beSystemProcess;
@@ -4635,6 +4638,7 @@
 
     "Modified: / 05-08-1998 / 14:53:27 / cg"
     "Modified: / 21-02-2017 / 12:19:19 / stefan"
+    "Modified: / 15-08-2018 / 14:45:47 / Claus Gittinger"
 !
 
 stopBackgroundFinalization