Semaphore.st
changeset 19928 e2bf8e38979c
parent 19927 b99e02676fb6
child 19948 be658f466bca
child 20116 c29d96c1db82
--- a/Semaphore.st	Fri Jun 03 11:33:04 2016 +0200
+++ b/Semaphore.st	Fri Jun 03 11:34:49 2016 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
 	      All Rights Reserved
@@ -352,10 +354,18 @@
 !Semaphore methodsFor:'accessing'!
 
 owner
+    "an optional reference to someone who owns this semaphore,
+     typically a shared queue or a windowgroup or similar.
+     This has no semantic meaning and is only used to support debugging"
+     
     ^ owner
 !
 
 owner:something
+    "an optional reference to someone who owns this semaphore,
+     typically a shared queue or a windowgroup or similar.
+     This has no semantic meaning and is only used to support debugging"
+
     owner := something.
 ! !