summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2002-08-14 17:31:42 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2002-08-14 17:31:42 (GMT)
commit4b5d9d688fcfa02e6cbce01873ea40fa7fc62bde (patch)
tree8f131b477e23d20a986cef5ee5d879ec86f8f4f1 /ChangeLog
parente5da04bb09ebf77a289165ed344ef33a59883585 (diff)
downloadtcl-4b5d9d688fcfa02e6cbce01873ea40fa7fc62bde.zip
tcl-4b5d9d688fcfa02e6cbce01873ea40fa7fc62bde.tar.gz
tcl-4b5d9d688fcfa02e6cbce01873ea40fa7fc62bde.tar.bz2
* generic/tclInt.h:
* generic/tclObj.c: (code cleanup) factored the parts in the macros TclNewObj() / TclDecrRefCount() into a common part for all memory allocators and two new macros TclAllocObjStorage() / TclFreeObjStorage() that are specific to each allocator and fully describe the differences. Removed allocator-specific code from tclObj.c by using the macros.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3305614..f3a4b6f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2002-08-14 Miguel Sofer <msofer@users.sourceforge.net>
+
+ * generic/tclInt.h:
+ * generic/tclObj.c: (code cleanup) factored the parts in the macros
+ TclNewObj() / TclDecrRefCount() into a common part for all
+ memory allocators and two new macros TclAllocObjStorage() /
+ TclFreeObjStorage() that are specific to each allocator and fully
+ describe the differences. Removed allocator-specific code from
+ tclObj.c by using the macros.
+
2002-08-12 Miguel Sofer <msofer@users.sourceforge.net>
* generic/tclCmdMZ.c: fixing UMR in delete traces, [Bug 589863].