summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2008-07-29 18:19:08 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2008-07-29 18:19:08 (GMT)
commite0dc5ad1dac50c004c16b1b5945aeda964c40ecd (patch)
tree5b6f051382e2f35069953bec645baefdad1b9e97 /ChangeLog
parentd63487fc10c65ca57db9496dc4300e63faece5fa (diff)
downloadtcl-e0dc5ad1dac50c004c16b1b5945aeda964c40ecd.zip
tcl-e0dc5ad1dac50c004c16b1b5945aeda964c40ecd.tar.gz
tcl-e0dc5ad1dac50c004c16b1b5945aeda964c40ecd.tar.bz2
* generic/tclBasic.c: Made use of the thread's alloc cache
* generic/tclInt.h: stored in the ekeko at interp creation * generic/tclNRE.h: to avoid hitting the TSD each time an * generic/tclThreadAlloc.c: NRE callback is pushed or pulled; the approach is suitably general to extend to evry other obj allocation where an interp is know; this is left for some other time, requires a lot of grunt work.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0bd884d..e471e99 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2008-07-29 Miguel Sofer <msofer@users.sf.net>
+ * generic/tclBasic.c: Made use of the thread's alloc cache
+ * generic/tclInt.h: stored in the ekeko at interp creation
+ * generic/tclNRE.h: to avoid hitting the TSD each time an
+ * generic/tclThreadAlloc.c: NRE callback is pushed or pulled; the
+ approach is suitably general to extend to evry other obj
+ allocation where an interp is know; this is left for some other
+ time, requires a lot of grunt work.
+
* generic/tclExecute.c: fix [Bug 2030670] that cause
TclStackRealloc to panic on rare corner cases. Thx ajpasadyn for
diagnose and patch.