diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2010-09-27 19:42:37 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2010-09-27 19:42:37 (GMT) |
commit | 869bb6b839721e19027162a8ae89c66d9f5fdbe4 (patch) | |
tree | 4d363e5df177abbfaf883365f97c35c5ba84a573 /generic/tclInt.h | |
parent | 2efdc538b9f8bd5d53fe38c26db1df0b19e2ede5 (diff) | |
download | tcl-869bb6b839721e19027162a8ae89c66d9f5fdbe4.zip tcl-869bb6b839721e19027162a8ae89c66d9f5fdbe4.tar.gz tcl-869bb6b839721e19027162a8ae89c66d9f5fdbe4.tar.bz2 |
* generic/tclBasic.c: [Patch 3072080] (minus the itcl
* generic/tclCmdIL.c: update): a saner NRE.
* generic/tclCompExpr.c:
* generic/tclCompile.c: This makes TclNRExecuteByteCode
* generic/tclCompile.h: (ex TEBC) to be a normal NRE
* generic/tclExecute.c: citizen: it loses its special status.
* generic/tclInt.decls: The logic flow within the BC engine is
* generic/tclInt.h: simplified considerably.
* generic/tclIntDecls.h:
* generic/tclObj.c:
* generic/tclProc.c:
* generic/tclTest.c:
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 1fb8869..f5b0666 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.482 2010/08/30 14:02:10 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.483 2010/09/27 19:42:38 msofer Exp $ */ #ifndef _TCLINT @@ -1477,16 +1477,12 @@ typedef struct CoroutineData { * coroutine. */ CorContext caller; CorContext running; - CorContext base; + Tcl_HashTable *lineLABCPtr; /* See Interp.lineLABCPtr */ void *stackLevel; int auxNumLevels; /* While the coroutine is running the * numLevels of the create/resume command is * stored here; for suspended coroutines it * holds the nesting numLevels at yield. */ - struct BottomData **callerBPPtr; - /* Where to stash the caller's bottomPointer, - * if the coro is running in the caller's TEBC - * instance. Put a NULL in there otherwise. */ int nargs; /* Number of args required for resuming this * coroutine; -2 means "0 or 1" (default), -1 * means "any" */ @@ -1500,7 +1496,6 @@ typedef struct ExecEnv { struct TEOV_callback *callbackPtr; /* Top callback in TEOV's stack. */ struct CoroutineData *corPtr; - struct BottomData *bottomPtr; int rewind; } ExecEnv; |