diff options
| author | click <click@gonnamakeyou.com> | 2012-04-23 20:23:30 +0200 |
|---|---|---|
| committer | click <click@gonnamakeyou.com> | 2012-04-23 20:23:30 +0200 |
| commit | c4123289916daa7bd1c7feb191e8c647fd17b163 (patch) | |
| tree | d6235b61f7ead417757273184acb27a252a96bc5 /dep/jemalloc/src/chunk_mmap.c | |
| parent | 5da5021464c649d84c755a921eae43519eba8567 (diff) | |
Revert "DEP: Updated Jemalloc to Version 2.5" - this version of the jemalloc-library is crashy at best, and should not have been pushed.
Further investigations on why this occurs is required before it will be slammed into master.
This reverts commit 126fd13e5d6b57dc0c8830248d44db504c7d103f.
Diffstat (limited to 'dep/jemalloc/src/chunk_mmap.c')
| -rw-r--r-- | dep/jemalloc/src/chunk_mmap.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dep/jemalloc/src/chunk_mmap.c b/dep/jemalloc/src/chunk_mmap.c index 164e86e7b38..bc367559774 100644 --- a/dep/jemalloc/src/chunk_mmap.c +++ b/dep/jemalloc/src/chunk_mmap.c @@ -206,15 +206,13 @@ chunk_alloc_mmap_internal(size_t size, bool noreserve) void * chunk_alloc_mmap(size_t size) { - - return (chunk_alloc_mmap_internal(size, false)); + return chunk_alloc_mmap_internal(size, false); } void * chunk_alloc_mmap_noreserve(size_t size) { - - return (chunk_alloc_mmap_internal(size, true)); + return chunk_alloc_mmap_internal(size, true); } void |
