summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.decls
diff options
context:
space:
mode:
authorwelch <welch@noemail.net>1999-08-10 02:42:11 (GMT)
committerwelch <welch@noemail.net>1999-08-10 02:42:11 (GMT)
commit996ab8b328faaf556d05a949b007343cf183db00 (patch)
tree17f7359546123767d03dd5cbd27b6934f1879b10 /generic/tclInt.decls
parent1b41340882b7ec9dc2992bcb3f6616e74c365c5b (diff)
downloadtcl-996ab8b328faaf556d05a949b007343cf183db00.zip
tcl-996ab8b328faaf556d05a949b007343cf183db00.tar.gz
tcl-996ab8b328faaf556d05a949b007343cf183db00.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 FossilOrigin-Name: 0a115beef88e678447b85060766fe9d7b6d1e811
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r--generic/tclInt.decls7
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)
+}
##############################################################################