diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-02 09:51:47 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-02 09:51:47 (GMT) |
commit | 10c9ce76f08286c1d9c1a229c633bf12576c25c5 (patch) | |
tree | 2e413533e72dcf649ee605975b318ed090106f8b /ChangeLog | |
parent | dfbab38ae547e10b74c8c13190efc5015aa52b43 (diff) | |
download | tcl-10c9ce76f08286c1d9c1a229c633bf12576c25c5.zip tcl-10c9ce76f08286c1d9c1a229c633bf12576c25c5.tar.gz tcl-10c9ce76f08286c1d9c1a229c633bf12576c25c5.tar.bz2 |
Chisel away at reducing the cost of recent changes.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,13 @@ 2010-02-02 Donal K. Fellows <dkf@users.sf.net> + * generic/tclOO.c (AllocObject, MyDeleted): A slightly faster way to + handle the deletion of [my] is with a standard delete callback. This + is because it doesn't require an additional memory allocation during + object creation. Also reduced the amount of string manipulation + performed during object creation to further streamline memory + handling; this is not backported to the 8.5 package as it breaks a + number of abstractions. + * generic/tclOOBasic.c (TclOO_Object_Destroy): [Bug 2944404]: Do not crash when a destructor deletes the object that is executing that destructor. |