diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2009-05-08 01:02:26 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2009-05-08 01:02:26 (GMT) |
commit | 7592bff0075283d77566536c9bea32df7073e73d (patch) | |
tree | 3cdc92382395a57ab68cc6fdb3b197d39dc8000d /generic/tclCompile.h | |
parent | 33fd9238dc467ef70e757a917e4c8ddd2dd7d78e (diff) | |
download | tcl-7592bff0075283d77566536c9bea32df7073e73d.zip tcl-7592bff0075283d77566536c9bea32df7073e73d.tar.gz tcl-7592bff0075283d77566536c9bea32df7073e73d.tar.bz2 |
* generic/tclBasic.c: Let coroutines start with a much smaller
* generic/tclCompile.h: stack: 200 words (previously was 2000,
* generic/tclExecute.c: the same as interps)
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index fb5bdb9..a9b8545 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.h,v 1.115 2009/02/27 23:03:42 nijtmans Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.116 2009/05/08 01:02:26 msofer Exp $ */ #ifndef _TCLCOMPILATION @@ -882,7 +882,7 @@ MODULE_SCOPE int TclCreateAuxData(ClientData clientData, const AuxDataType *typePtr, CompileEnv *envPtr); MODULE_SCOPE int TclCreateExceptRange(ExceptionRangeType type, CompileEnv *envPtr); -MODULE_SCOPE ExecEnv * TclCreateExecEnv(Tcl_Interp *interp); +MODULE_SCOPE ExecEnv * TclCreateExecEnv(Tcl_Interp *interp, int size); MODULE_SCOPE Tcl_Obj * TclCreateLiteral(Interp *iPtr, char *bytes, int length, unsigned int hash, int *newPtr, Namespace *nsPtr, int flags, |