summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwelch <welch@noemail.net>1999-08-10 02:40:04 (GMT)
committerwelch <welch@noemail.net>1999-08-10 02:40:04 (GMT)
commit1b41340882b7ec9dc2992bcb3f6616e74c365c5b (patch)
tree7efef6231e5811ff170815cf0042905b153f3bc3
parent8f36ea47d4caa0701683086919f00c390fd9067c (diff)
downloadtcl-1b41340882b7ec9dc2992bcb3f6616e74c365c5b.zip
tcl-1b41340882b7ec9dc2992bcb3f6616e74c365c5b.tar.gz
tcl-1b41340882b7ec9dc2992bcb3f6616e74c365c5b.tar.bz2
Updated change log for my aolserver-related changes
FossilOrigin-Name: 22cd3dfa32c4c582f211b5ef79286037279a9824
-rw-r--r--changes18
1 files changed, 17 insertions, 1 deletions
diff --git a/changes b/changes
index 28a4f8f..0b97bc3 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.47 1999/08/04 20:58:48 redman Exp $
+RCS: @(#) $Id: changes,v 1.48 1999/08/10 02:40:04 welch Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -4587,3 +4587,19 @@ TerminateThread(), which seems to leak about 4k from the helper
thread's stack space. (redman)
--------------- Released 8.2b2, August 5, 1999 ----------------------
+
+8/9/99 (internal api change) Removed the TclpMutexLock and TclpMutexUnlock
+APIs and added a new exported api, Tcl_GetAllocMutex. These APIs are all for
+the mutex used in the simple memory allocators. By making this change
+we are able to substitute different implementations of the thread-related
+APIs without having to recompile the Tcl core. (welch)
+
+8/9/99 (new C API) Tcl_GetChannelNames returns a list of open channel
+names in the interpreter result. Still no Tcl-level version of this,
+but server-like applications can use this to clean up files without
+deleting interpreters. (welch)
+
+8/9/99 (bug fix) Traces were not firing on "info exists", which used to
+happen in Tcl 7.6 and earlier. An "info exists" now fires a read trace,
+if defined. This makes it possible to fully implement variables that
+are defined via traces. (welch)