diff options
author | Jason Evans <je@fb.com> | 2011-11-14 17:15:59 -0800 |
---|---|---|
committer | Jason Evans <je@fb.com> | 2011-11-14 17:15:59 -0800 |
commit | fc1bb70e5f0d9a58b39efa39cc549b5af5104760 (patch) | |
tree | 0a77b93409638147a90c2ec49fd818789a722f42 /include | |
parent | d1c526d53b613474975ccd0124e3150f54a991d1 (diff) | |
parent | 196c7b7e6d567dc5a4e9a70001e52c8b970ff318 (diff) | |
download | jemalloc-2.2.5.tar.gz |
Merge branch '2_2_5_bp'2.2.5
Diffstat (limited to 'include')
-rw-r--r-- | include/jemalloc/internal/chunk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/chunk.h b/include/jemalloc/internal/chunk.h index a60f0ad7..54b6a3ec 100644 --- a/include/jemalloc/internal/chunk.h +++ b/include/jemalloc/internal/chunk.h @@ -50,7 +50,7 @@ extern size_t map_bias; /* Number of arena chunk header pages. */ extern size_t arena_maxclass; /* Max size class for arenas. */ void *chunk_alloc(size_t size, bool base, bool *zero); -void chunk_dealloc(void *chunk, size_t size); +void chunk_dealloc(void *chunk, size_t size, bool unmap); bool chunk_boot(void); #endif /* JEMALLOC_H_EXTERNS */ |