summaryrefslogtreecommitdiff
path: root/src/common/malloc.h
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2015-01-18 19:53:29 -0200
committershennetsind <ind@henn.et>2015-01-18 19:53:29 -0200
commiteb75dc692321954912d3befcdfb45d2f1898eaa4 (patch)
treec3b9f799a494281031cd067c8c0fa31a5fa6b462 /src/common/malloc.h
parent43a24c0c88bdf19935d15d1b8392e3527ff090cd (diff)
parentd541a74021fd7715f1201b123714253dd602d2bf (diff)
downloadhercules-eb75dc692321954912d3befcdfb45d2f1898eaa4.tar.gz
hercules-eb75dc692321954912d3befcdfb45d2f1898eaa4.tar.bz2
hercules-eb75dc692321954912d3befcdfb45d2f1898eaa4.tar.xz
hercules-eb75dc692321954912d3befcdfb45d2f1898eaa4.zip
Merge branch 'master' of github.com:HerculesWS/Hercules
Diffstat (limited to 'src/common/malloc.h')
-rw-r--r--src/common/malloc.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/common/malloc.h b/src/common/malloc.h
index bc79ac65a..7ed2fb19c 100644
--- a/src/common/malloc.h
+++ b/src/common/malloc.h
@@ -59,12 +59,6 @@
////////////////////////////////////////////////
-//void malloc_memory_check(void);
-//bool malloc_verify_ptr(void* ptr);
-//size_t malloc_usage (void);
-//void malloc_init (void);
-//void malloc_final (void);
-
#ifdef HERCULES_CORE
void malloc_defaults(void);
@@ -87,6 +81,7 @@ struct malloc_interface {
size_t (*usage) (void);
/* */
void (*post_shutdown) (void);
+ void (*init_messages) (void);
};
struct malloc_interface *iMalloc;