aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid T. Goldblatt <davidtgoldblatt@gmail.com>2017-10-01 18:54:25 -0700
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-12-18 16:29:10 -0800
commit901d94a2b06df09c960836901f6a81a0d3d00732 (patch)
treefe93daf1531cd91e4e135572fb8fd2fd29b11552 /include
parent8aafa270fd56c36db374fa9f294217fa80151b3d (diff)
downloadplatform_external_jemalloc_new-901d94a2b06df09c960836901f6a81a0d3d00732.tar.gz
platform_external_jemalloc_new-901d94a2b06df09c960836901f6a81a0d3d00732.tar.bz2
platform_external_jemalloc_new-901d94a2b06df09c960836901f6a81a0d3d00732.zip
Rename cache_alloc_easy to cache_bin_alloc_easy.
This lives in the cache_bin module; just a typo.
Diffstat (limited to 'include')
-rw-r--r--include/jemalloc/internal/cache_bin.h2
-rw-r--r--include/jemalloc/internal/tcache_inlines.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/jemalloc/internal/cache_bin.h b/include/jemalloc/internal/cache_bin.h
index 9b874398..12f3ef2d 100644
--- a/include/jemalloc/internal/cache_bin.h
+++ b/include/jemalloc/internal/cache_bin.h
@@ -85,7 +85,7 @@ cache_bin_array_descriptor_init(cache_bin_array_descriptor_t *descriptor,
}
JEMALLOC_ALWAYS_INLINE void *
-cache_alloc_easy(cache_bin_t *bin, bool *success) {
+cache_bin_alloc_easy(cache_bin_t *bin, bool *success) {
void *ret;
if (unlikely(bin->ncached == 0)) {
diff --git a/include/jemalloc/internal/tcache_inlines.h b/include/jemalloc/internal/tcache_inlines.h
index 14ab037f..0a6feb59 100644
--- a/include/jemalloc/internal/tcache_inlines.h
+++ b/include/jemalloc/internal/tcache_inlines.h
@@ -48,7 +48,7 @@ tcache_alloc_small(tsd_t *tsd, arena_t *arena, tcache_t *tcache, size_t size,
assert(binind < NBINS);
bin = tcache_small_bin_get(tcache, binind);
- ret = cache_alloc_easy(bin, &tcache_success);
+ ret = cache_bin_alloc_easy(bin, &tcache_success);
assert(tcache_success == (ret != NULL));
if (unlikely(!tcache_success)) {
bool tcache_hard_success;
@@ -109,7 +109,7 @@ tcache_alloc_large(tsd_t *tsd, arena_t *arena, tcache_t *tcache, size_t size,
assert(binind >= NBINS &&binind < nhbins);
bin = tcache_large_bin_get(tcache, binind);
- ret = cache_alloc_easy(bin, &tcache_success);
+ ret = cache_bin_alloc_easy(bin, &tcache_success);
assert(tcache_success == (ret != NULL));
if (unlikely(!tcache_success)) {
/*