class: Context
authorStefan Vogel <sv@exept.de>
Fri, 10 May 2013 20:46:37 +0200
changeset 15232 4162bcd5498a
parent 15231 59326b42815a
child 15233 d1ceef1dcfd2
class: Context changed:5 methods _markNonLIFO() -> __markNonLIFO()
Context.st
--- a/Context.st	Wed May 08 09:54:34 2013 +0200
+++ b/Context.st	Fri May 10 20:46:37 2013 +0200
@@ -718,12 +718,12 @@
         if (! __isNonLIFO(theContext)) {
             /*
              * to be prepared for the worst situation
-             * (the sender is not stored, so the trap wont catch it)
+             * (the sender is not stored, so the trap won't catch it)
              * make the writeBarrier trigger manually.
              * We'll see, if this is really required.
              */
             theContext->o_space |= CATCHMARK;
-            _markNonLIFO(theContext);
+            __markNonLIFO(theContext);
         }
     }
     RETURN (theContext);
@@ -1950,7 +1950,7 @@
                  */
                 theContext->o_space |= CATCHMARK;
 #if 0
-                _markNonLIFO(theContext);
+                __markNonLIFO(theContext);
 #endif
             }
             RETURN (theContext);
@@ -2012,12 +2012,12 @@
             if (! __isNonLIFO(theContext)) {
                 /*
                  * to be prepared for the worst situation
-                 * (the sender is not stored, so the trap wont catch it)
+                 * (the sender is not stored, so the trap won't catch it)
                  * make the writeBarrier trigger manually.
                  * We'll see, if this is really required.
                  */
                 theContext->o_space |= CATCHMARK;
-                _markNonLIFO(theContext);
+                __markNonLIFO(theContext);
             }
             RETURN (theContext);
         }
@@ -2077,13 +2077,13 @@
             if (! __isNonLIFO(theContext)) {
                 /*
                  * to be prepared for the worst situation
-                 * (the sender is not stored, so the trap wont catch it)
+                 * (the sender is not stored, so the trap won't catch it)
                  * make the writeBarrier trigger manually.
                  * We'll see, if this is really required.
                  */
                 theContext->o_space |= CATCHMARK;
 #if 0
-                _markNonLIFO(theContext);
+                __markNonLIFO(theContext);
 #endif
             }
             RETURN (theContext);
@@ -2144,7 +2144,7 @@
                  */
                 theContext->o_space |= CATCHMARK;
 #if 0
-                _markNonLIFO(theContext);
+                __markNonLIFO(theContext);
 #endif
             }
             RETURN (theContext);
@@ -2472,15 +2472,15 @@
 !Context class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Context.st,v 1.181 2013-04-15 15:28:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Context.st,v 1.182 2013-05-10 18:46:37 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Context.st,v 1.181 2013-04-15 15:28:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Context.st,v 1.182 2013-05-10 18:46:37 stefan Exp $'
 !
 
 version_SVN
-    ^ '§ Id: Context.st 10643 2011-06-08 21:53:07Z vranyj1  §'
+    ^ '$ Id: Context.st 10643 2011-06-08 21:53:07Z vranyj1  $'
 ! !