[svn:parrot] r48948 - in trunk: docs/pmc editor include/parrot src/call src/pmc
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Sun Sep 12 00:49:46 UTC 2010
Author: NotFound
Date: Sun Sep 12 00:49:45 2010
New Revision: 48948
URL: https://trac.parrot.org/parrot/changeset/48948
Log:
remove remaining mentions of RetContinuation in comments and docs
Modified:
trunk/docs/pmc/subs.pod
trunk/editor/pir-mode.el
trunk/include/parrot/sub.h
trunk/src/call/pcc.c
trunk/src/pmc/continuation.pmc
Modified: trunk/docs/pmc/subs.pod
==============================================================================
--- trunk/docs/pmc/subs.pod Sun Sep 12 00:32:05 2010 (r48947)
+++ trunk/docs/pmc/subs.pod Sun Sep 12 00:49:45 2010 (r48948)
@@ -27,7 +27,6 @@
Coroutine
Eval
Continuation
- RetContinuation
ExceptionHandler
By "invokable" we mean that they can be supplied as the first argument to the
Modified: trunk/editor/pir-mode.el
==============================================================================
--- trunk/editor/pir-mode.el Sun Sep 12 00:32:05 2010 (r48947)
+++ trunk/editor/pir-mode.el Sun Sep 12 00:49:45 2010 (r48948)
@@ -155,7 +155,7 @@
"ParrotIO" "ParrotInterpreter" "ParrotLibrary" "ParrotObject"
"ParrotThread" "Pointer"
"ResizableBooleanArray" "ResizableFloatArray" "ResizableIntegerArray"
- "ResizablePMCArray" "ResizableStringArray" "RetContinuation"
+ "ResizablePMCArray" "ResizableStringArray"
"Role" "Scalar" "String" "Sub" "Super"
"Timer" "UnManagedStruct" "Undef" "VtableCache"))
Modified: trunk/include/parrot/sub.h
==============================================================================
--- trunk/include/parrot/sub.h Sun Sep 12 00:32:05 2010 (r48947)
+++ trunk/include/parrot/sub.h Sun Sep 12 00:49:45 2010 (r48948)
@@ -106,7 +106,7 @@
#define Sub_comp_INIT_CLEAR(o) Sub_comp_flag_CLEAR(PF_INIT, o)
/*
- * a flag to signal a Sub that a new RetContinuation should be created
+ * a flag to signal a Sub that a new Continuation should be created
*/
#define NEED_CONTINUATION ((PMC *)1)
Modified: trunk/src/call/pcc.c
==============================================================================
--- trunk/src/call/pcc.c Sun Sep 12 00:32:05 2010 (r48947)
+++ trunk/src/call/pcc.c Sun Sep 12 00:49:45 2010 (r48948)
@@ -270,8 +270,7 @@
=item C<INTVAL Parrot_pcc_do_run_ops(PARROT_INTERP, PMC *sub_obj)>
-Check if current object require running ops. Used in tailcall for updating
-RetContinuation.
+Check if current object require running ops.
=cut
Modified: trunk/src/pmc/continuation.pmc
==============================================================================
--- trunk/src/pmc/continuation.pmc Sun Sep 12 00:32:05 2010 (r48947)
+++ trunk/src/pmc/continuation.pmc Sun Sep 12 00:49:45 2010 (r48948)
@@ -42,8 +42,8 @@
/*
- * A Continuation (and RetContinuation, ExceptionHandler) has in its
- * context a pointer to the register frame, which contains active objects.
+ * A Continuation (and an ExceptionHandler) has in its context a pointer
+ * to the register frame, which contains active objects.
* Additionally ct->current_cont has the continuation of the caller.
*/
More information about the parrot-commits
mailing list