Continuation.st
changeset 8554 8fc9c321feb8
parent 8553 1cf4acd5102a
child 8557 931a24890c1f
--- a/Continuation.st	Mon Sep 20 12:27:44 2004 +0200
+++ b/Continuation.st	Mon Sep 20 12:31:20 2004 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2004 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 Object subclass:#Continuation
@@ -7,9 +19,46 @@
 	category:'Kernel-Processes'
 !
 
+!Continuation class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2004 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
+documentation
+"
+    Initial attempt - Contnuations do not work yet.
+
+    [Instance variables:]
+
+        id                     <SmallInteger>   a unique continuation-id;
+                                                Used to identify a corresponding 
+                                                data-structure in the VM.
+
+        process                <Process>        the process which created this continuation.
+
+    [Class variables:]
+
+    [see also:]
+        Process Context Block
+
+    [author:]
+        Claus Gittinger
+"
+! !
 
 !Continuation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Continuation.st,v 1.1 2004-09-20 10:27:44 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Continuation.st,v 1.2 2004-09-20 10:31:20 cg Exp $'
 ! !