diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2009-12-08 01:34:04 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2009-12-08 01:34:04 (GMT) |
commit | 903848120ff87aaa29fd7b7cc21b37b097edefc1 (patch) | |
tree | 897d5ed5a850e95bf6652b304c23e04977ac8119 /generic/tclInt.h | |
parent | ddd3069fa1c4fd4dbcfd28c0486d8de3254fdae2 (diff) | |
download | tcl-903848120ff87aaa29fd7b7cc21b37b097edefc1.zip tcl-903848120ff87aaa29fd7b7cc21b37b097edefc1.tar.gz tcl-903848120ff87aaa29fd7b7cc21b37b097edefc1.tar.bz2 |
* generic/tclExecute.c: Start cleaning the TEBC stables
* generic/tclInt.h:
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index c1315be..6eb542e 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.450 2009/12/07 16:33:01 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.451 2009/12/08 01:34:05 msofer Exp $ */ #ifndef _TCLINT @@ -1400,7 +1400,7 @@ typedef struct CoroutineData { CorContext caller; CorContext running; CorContext base; - int *stackLevel; + void *stackLevel; int auxNumLevels; /* While the coroutine is running the * numLevels of the create/resume command is * stored here; for suspended coroutines it |