aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid T. Goldblatt <davidtgoldblatt@gmail.com>2017-10-01 17:22:06 -0700
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-12-18 16:29:10 -0800
commit4bf4a1c4ea418ba490d35d23aee0f535e96ddd23 (patch)
tree30900d7b8cc06e43ac9a69d8420044e78028753d /test
parent740bdd68b1d4b9c39c68432e06deb70ad4da3210 (diff)
downloadjemalloc_new-4bf4a1c4ea418ba490d35d23aee0f535e96ddd23.tar.gz
Pull out arena_bin_info_t and arena_bin_t into their own file.
In the process, kill arena_bin_index, which is unused. To follow are several diffs continuing this separation.
Diffstat (limited to 'test')
-rw-r--r--test/unit/junk.c2
-rw-r--r--test/unit/mallctl.c6
-rw-r--r--test/unit/slab.c2
-rw-r--r--test/unit/stats.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/test/unit/junk.c b/test/unit/junk.c
index fd0e65b1..243ced41 100644
--- a/test/unit/junk.c
+++ b/test/unit/junk.c
@@ -15,7 +15,7 @@ watch_junking(void *p) {
}
static void
-arena_dalloc_junk_small_intercept(void *ptr, const arena_bin_info_t *bin_info) {
+arena_dalloc_junk_small_intercept(void *ptr, const bin_info_t *bin_info) {
size_t i;
arena_dalloc_junk_small_orig(ptr, bin_info);
diff --git a/test/unit/mallctl.c b/test/unit/mallctl.c
index 4cfd981a..e812b52f 100644
--- a/test/unit/mallctl.c
+++ b/test/unit/mallctl.c
@@ -696,10 +696,10 @@ TEST_BEGIN(test_arenas_bin_constants) {
assert_zu_eq(name, expected, "Incorrect "#name" size"); \
} while (0)
- TEST_ARENAS_BIN_CONSTANT(size_t, size, arena_bin_info[0].reg_size);
- TEST_ARENAS_BIN_CONSTANT(uint32_t, nregs, arena_bin_info[0].nregs);
+ TEST_ARENAS_BIN_CONSTANT(size_t, size, bin_infos[0].reg_size);
+ TEST_ARENAS_BIN_CONSTANT(uint32_t, nregs, bin_infos[0].nregs);
TEST_ARENAS_BIN_CONSTANT(size_t, slab_size,
- arena_bin_info[0].slab_size);
+ bin_infos[0].slab_size);
#undef TEST_ARENAS_BIN_CONSTANT
}
diff --git a/test/unit/slab.c b/test/unit/slab.c
index ea344f8f..7e662aed 100644
--- a/test/unit/slab.c
+++ b/test/unit/slab.c
@@ -6,7 +6,7 @@ TEST_BEGIN(test_arena_slab_regind) {
for (binind = 0; binind < NBINS; binind++) {
size_t regind;
extent_t slab;
- const arena_bin_info_t *bin_info = &arena_bin_info[binind];
+ const bin_info_t *bin_info = &bin_infos[binind];
extent_init(&slab, NULL, mallocx(bin_info->slab_size,
MALLOCX_LG_ALIGN(LG_PAGE)), bin_info->slab_size, true,
binind, 0, extent_state_active, false, true, true);
diff --git a/test/unit/stats.c b/test/unit/stats.c
index d9849d80..231010e4 100644
--- a/test/unit/stats.c
+++ b/test/unit/stats.c
@@ -245,7 +245,7 @@ TEST_BEGIN(test_stats_arenas_bins) {
(void *)&arena_ind, sizeof(arena_ind)), 0,
"Unexpected mallctl() failure");
- p = malloc(arena_bin_info[0].reg_size);
+ p = malloc(bin_infos[0].reg_size);
assert_ptr_not_null(p, "Unexpected malloc() failure");
assert_d_eq(mallctl("thread.tcache.flush", NULL, NULL, NULL, 0),