diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2005-11-18 23:07:26 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2005-11-18 23:07:26 (GMT) |
commit | c97535ea03fe482ec1293e11b276eb40fd2faeb8 (patch) | |
tree | 55f1b4ed5f653180f0ac89f9dfb2510b141648c0 /generic/tclInt.h | |
parent | cb651f0210eff616b6ee84c8c2146bd5f1f2f320 (diff) | |
download | tcl-c97535ea03fe482ec1293e11b276eb40fd2faeb8.zip tcl-c97535ea03fe482ec1293e11b276eb40fd2faeb8.tar.gz tcl-c97535ea03fe482ec1293e11b276eb40fd2faeb8.tar.bz2 |
* generic/tclBasic.c (Tcl_DeleteCommandFromToken):
* generic/tclCmdMZ.c (TraceCommandProc):
* generic/tclInt.h (NS_KILLED):
* generic/tclNamesp.c (Tcl_DeleteNamespace
* tests/namespace.test (namespace-7.3-6):
* tests/trace.test (trace-20.13-16): fix [Bugs 1355942/1355342].
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 60fe1d8..014ba06 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,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.118.2.19 2005/11/04 01:15:20 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.118.2.20 2005/11/18 23:07:27 msofer Exp $ */ #ifndef _TCLINT @@ -270,10 +270,13 @@ typedef struct Namespace { * in any byte code code unit that refers to the namespace has * been freed (i.e., when the namespace's refCount is 0), the * namespace's storage will be freed. + * NS_KILLED 1 means that TclTeardownNamespace has already been called on + * this namespace and it should not be called again [Bug 1355942] */ #define NS_DYING 0x01 #define NS_DEAD 0x02 +#define NS_KILLED 0x04 /* * Flag passed to TclGetNamespaceForQualName to have it create all namespace |