diff options
| author | Miguel Sofer <miguel.sofer@gmail.com> | 2005-11-14 00:41:05 (GMT) |
|---|---|---|
| committer | Miguel Sofer <miguel.sofer@gmail.com> | 2005-11-14 00:41:05 (GMT) |
| commit | d89464c2c6f872cf7b9346031cad1026eaf96d06 (patch) | |
| tree | 6ca36e542384ebbf3ca170a55c48aae2d07c3394 /generic/tclInt.h | |
| parent | c9801cf24ed5605dc0638484cb56c14e3b747305 (diff) | |
| download | tcl-d89464c2c6f872cf7b9346031cad1026eaf96d06.zip tcl-d89464c2c6f872cf7b9346031cad1026eaf96d06.tar.gz tcl-d89464c2c6f872cf7b9346031cad1026eaf96d06.tar.bz2 | |
* generic/tclInt.h:
* generic/tclNamesp.c:
* tests/namespace.test: fix for bugs #1354540 and #1355942. The
new tests 7.3-6 and the modified 51.13 fail due to the unrelated
[Bug 1355342]
* tests/trace.test: added tests 20.13-16 for [Bug 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 480507d..8558e14 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.257 2005/11/12 04:08:05 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.258 2005/11/14 00:41:05 msofer Exp $ */ #ifndef _TCLINT @@ -308,10 +308,13 @@ struct NamespacePathEntry { * 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 /* * Flags passed to TclGetNamespaceForQualName: |
