diff options
author | Rat <none@none> | 2010-06-07 00:13:01 +0200 |
---|---|---|
committer | Rat <none@none> | 2010-06-07 00:13:01 +0200 |
commit | aa953f4ac809f6fffa1edc8453d44143cdc7ca30 (patch) | |
tree | 7d17d7141a69f8692f09f4025d44ad93e04fc430 /externals/jemalloc/include/internal/base.h | |
parent | 8ef7414c233ed91a5a115efebb2f985feaae4704 (diff) |
re-added jemalloc
--HG--
branch : trunk
Diffstat (limited to 'externals/jemalloc/include/internal/base.h')
-rw-r--r-- | externals/jemalloc/include/internal/base.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/externals/jemalloc/include/internal/base.h b/externals/jemalloc/include/internal/base.h new file mode 100644 index 00000000000..e353f309bd2 --- /dev/null +++ b/externals/jemalloc/include/internal/base.h @@ -0,0 +1,24 @@ +/******************************************************************************/ +#ifdef JEMALLOC_H_TYPES + +#endif /* JEMALLOC_H_TYPES */ +/******************************************************************************/ +#ifdef JEMALLOC_H_STRUCTS + +#endif /* JEMALLOC_H_STRUCTS */ +/******************************************************************************/ +#ifdef JEMALLOC_H_EXTERNS + +extern malloc_mutex_t base_mtx; + +void *base_alloc(size_t size); +extent_node_t *base_node_alloc(void); +void base_node_dealloc(extent_node_t *node); +bool base_boot(void); + +#endif /* JEMALLOC_H_EXTERNS */ +/******************************************************************************/ +#ifdef JEMALLOC_H_INLINES + +#endif /* JEMALLOC_H_INLINES */ +/******************************************************************************/ |