diff options
author | welch <welch> | 1999-08-10 02:42:12 (GMT) |
---|---|---|
committer | welch <welch> | 1999-08-10 02:42:12 (GMT) |
commit | 3a26c6d4498ad6fad866d54c7b23cb221fe21898 (patch) | |
tree | 17f7359546123767d03dd5cbd27b6934f1879b10 /generic/tclInt.decls | |
parent | 26903290462f20550bb1d7e596008b2e8f1f723e (diff) | |
download | tcl-3a26c6d4498ad6fad866d54c7b23cb221fe21898.zip tcl-3a26c6d4498ad6fad866d54c7b23cb221fe21898.tar.gz tcl-3a26c6d4498ad6fad866d54c7b23cb221fe21898.tar.bz2 |
1 Added use of Tcl_GetAllocMutex to tclAlloc.c and tclCkalloc.c so they
can be linked against alternate thread packages.
2 Added Tcl_GetChannelNames to tclIO.c
3 Added TclVarTraceExists hook so "info exists" triggers read traces
exactly like it did in Tcl 7.6
4 Stubs table changes to reflect new internal and external APIs
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index b4cab7c..52604a6 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -10,7 +10,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.decls,v 1.16 1999/08/02 17:45:37 redman Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.17 1999/08/10 02:42:14 welch Exp $ library tcl @@ -560,6 +560,8 @@ declare 149 generic { void TclHandleRelease(TclHandle handle) } +# Added for Tcl 8.2 + declare 150 generic { int TclRegAbout(Tcl_Interp *interp, Tcl_RegExp re) } @@ -587,6 +589,9 @@ declare 156 generic { void TclRegError (Tcl_Interp *interp, char *msg, \ int status) } +declare 157 generic { + Var * TclVarTraceExists (Tcl_Interp *interp, char *varName) +} ############################################################################## |