diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-29 18:19:08 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-29 18:19:08 (GMT) |
commit | e0dc5ad1dac50c004c16b1b5945aeda964c40ecd (patch) | |
tree | 5b6f051382e2f35069953bec645baefdad1b9e97 /ChangeLog | |
parent | d63487fc10c65ca57db9496dc4300e63faece5fa (diff) | |
download | tcl-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-- | ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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. |