summaryrefslogtreecommitdiff
path: root/Changelog-Trunk.txt
diff options
context:
space:
mode:
authorflaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-07-20 22:23:13 +0000
committerflaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-07-20 22:23:13 +0000
commit427ebfd9e94a68ca15ca6b51378b80871dde95b9 (patch)
treee2570ffea4a7399fafed9459aa4dbddd2410e439 /Changelog-Trunk.txt
parent0c750e8a43af3e68d000ba9009dce8dc8a2d9769 (diff)
downloadhercules-427ebfd9e94a68ca15ca6b51378b80871dde95b9.tar.gz
hercules-427ebfd9e94a68ca15ca6b51378b80871dde95b9.tar.bz2
hercules-427ebfd9e94a68ca15ca6b51378b80871dde95b9.tar.xz
hercules-427ebfd9e94a68ca15ca6b51378b80871dde95b9.zip
* Made GCOLLECT use it's debug functions.
* Turned off garbage collection for GCOLLECT since there's nothing to do with explicit frees. * Added malloc_verify_ptr/malloc_usage code for all memory libraries. * Added malloc_memory_check for debug purposes, tests memory for errors and memory leaks. * Added explicit memory check on malloc_final. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14917 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'Changelog-Trunk.txt')
-rw-r--r--Changelog-Trunk.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 82a7c6a12..14445a960 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -1,5 +1,11 @@
Date Added
+2011/07/20
+ * Made GCOLLECT use it's debug functions. [FlavioJS]
+ * Turned off garbage collection for GCOLLECT since there's nothing to do with explicit frees.
+ * Added malloc_verify_ptr/malloc_usage code for all memory libraries.
+ * Added malloc_memory_check for debug purposes, tests memory for errors and memory leaks.
+ * Added explicit memory check on malloc_final.
2011/07/19
* Made NO_MEMMGR only be set as a default value, allowing for simultaneous use with the memory libraries. [FlavioJS]
* Moved memory library selection to malloc.c to avoid poisoning the namespace of the rest of the code.