summaryrefslogtreecommitdiff
path: root/Changelog-Trunk.txt
diff options
context:
space:
mode:
authorflaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-07-19 04:12:30 +0000
committerflaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-07-19 04:12:30 +0000
commit44ce1e507f08e4d808dbae8abeb355e01de1819f (patch)
tree970bba91385573c664f0267e51aaf846d7d6710b /Changelog-Trunk.txt
parentfcf74b22c8c1136a66c802e8067db74e25654f81 (diff)
downloadhercules-44ce1e507f08e4d808dbae8abeb355e01de1819f.tar.gz
hercules-44ce1e507f08e4d808dbae8abeb355e01de1819f.tar.bz2
hercules-44ce1e507f08e4d808dbae8abeb355e01de1819f.tar.xz
hercules-44ce1e507f08e4d808dbae8abeb355e01de1819f.zip
* Made NO_MEMMGR only be set as a default value, allowing for simultaneous use with the memory libraries.
* Moved memory library selection to malloc.c to avoid poisoning the namespace of the rest of the code. * Removed BCHECK code since it's unneeded. (bcheck is an external batch tool that runs on top of the dbx debugger) * Fixed GCOLLECT usage. (missing init and final memory leak check) * Fixed DMALLOC usage. (missing options on CYGWIN and verify memory) * Renamed malloc_verify to malloc_verify_ptr to avoid conflict with DMALLOC. * Changed itemtype from inline to static inline to avoid error with the SunOS compiler. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14913 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'Changelog-Trunk.txt')
-rw-r--r--Changelog-Trunk.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 82c2563d4..c39b7cf93 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -1,5 +1,13 @@
Date Added
+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.
+ * Removed BCHECK code since it's uneeded. (bcheck is an external batch tool that runs on top of the dbx debugger)
+ * Fixed GCOLLECT usage. (missing init and final memory leak check)
+ * Fixed DMALLOC usage. (missing options on CYGWIN and verify memory)
+ * Renamed malloc_verify to malloc_verify_ptr to avoid conflict with DMALLOC.
+ * Changed itemtype from inline to static inline to avoid error with the SunOS compiler.
2011/07/15
* Changed the warning message of when setrlimit fails to be more explicit. [FlavioJS]
* CMake: added tests for big endian, typecast to union and monotonic clock.