Update private symbols.

This commit is contained in:
Jason Evans 2016-05-31 14:14:03 -07:00
parent 498856f44a
commit 714d1640f3
2 changed files with 21 additions and 13 deletions

View File

@ -19,7 +19,6 @@ arena_chunk_ralloc_huge_expand
arena_chunk_ralloc_huge_shrink arena_chunk_ralloc_huge_shrink
arena_cleanup arena_cleanup
arena_dalloc arena_dalloc
arena_dalloc_bin
arena_dalloc_bin_junked_locked arena_dalloc_bin_junked_locked
arena_dalloc_junk_small arena_dalloc_junk_small
arena_dalloc_promoted arena_dalloc_promoted
@ -66,7 +65,6 @@ arena_prof_tctx_reset
arena_prof_tctx_set arena_prof_tctx_set
arena_purge arena_purge
arena_ralloc arena_ralloc
arena_ralloc_junk_large
arena_ralloc_no_move arena_ralloc_no_move
arena_reset arena_reset
arena_salloc arena_salloc
@ -181,6 +179,12 @@ extent_before_get
extent_committed_get extent_committed_get
extent_committed_set extent_committed_set
extent_dalloc extent_dalloc
extent_heap_empty
extent_heap_first
extent_heap_insert
extent_heap_new
extent_heap_remove
extent_heap_remove_first
extent_init extent_init
extent_last_get extent_last_get
extent_past_get extent_past_get
@ -190,15 +194,15 @@ extent_retained_get
extent_ring_insert extent_ring_insert
extent_ring_remove extent_ring_remove
extent_size_get extent_size_get
extent_size_set
extent_size_quantize_ceil extent_size_quantize_ceil
extent_size_quantize_floor extent_size_quantize_floor
extent_size_set
extent_slab_data_get extent_slab_data_get
extent_slab_data_get_const extent_slab_data_get_const
extent_slab_get extent_slab_get
extent_slab_set extent_slab_set
extent_slab_data_get
extent_usize_get extent_usize_get
extent_usize_set
extent_zeroed_get extent_zeroed_get
extent_zeroed_set extent_zeroed_set
ffs_llu ffs_llu
@ -333,6 +337,7 @@ pages_unmap
pind2sz pind2sz
pind2sz_compute pind2sz_compute
pind2sz_lookup pind2sz_lookup
pind2sz_tab
pow2_ceil_u32 pow2_ceil_u32
pow2_ceil_u64 pow2_ceil_u64
pow2_ceil_zu pow2_ceil_zu
@ -396,10 +401,6 @@ rtree_child_read_hard
rtree_child_tryread rtree_child_tryread
rtree_clear rtree_clear
rtree_delete rtree_delete
rtree_new
rtree_node_alloc
rtree_node_dalloc
rtree_node_valid
rtree_elm_acquire rtree_elm_acquire
rtree_elm_lookup rtree_elm_lookup
rtree_elm_read rtree_elm_read
@ -411,6 +412,10 @@ rtree_elm_witness_release
rtree_elm_witnesses_cleanup rtree_elm_witnesses_cleanup
rtree_elm_write rtree_elm_write
rtree_elm_write_acquired rtree_elm_write_acquired
rtree_new
rtree_node_alloc
rtree_node_dalloc
rtree_node_valid
rtree_read rtree_read
rtree_start_level rtree_start_level
rtree_subkey rtree_subkey
@ -433,17 +438,17 @@ stats_cactive_get
stats_cactive_sub stats_cactive_sub
stats_print stats_print
tcache_alloc_easy tcache_alloc_easy
tcache_alloc_large tcache_alloc_huge
tcache_alloc_small tcache_alloc_small
tcache_alloc_small_hard tcache_alloc_small_hard
tcache_arena_reassociate tcache_arena_reassociate
tcache_bin_flush_large tcache_bin_flush_huge
tcache_bin_flush_small tcache_bin_flush_small
tcache_bin_info tcache_bin_info
tcache_boot tcache_boot
tcache_cleanup tcache_cleanup
tcache_create tcache_create
tcache_dalloc_large tcache_dalloc_huge
tcache_dalloc_small tcache_dalloc_small
tcache_enabled_cleanup tcache_enabled_cleanup
tcache_enabled_get tcache_enabled_get
@ -502,6 +507,9 @@ tsd_nominal
tsd_prof_tdata_get tsd_prof_tdata_get
tsd_prof_tdata_set tsd_prof_tdata_set
tsd_prof_tdatap_get tsd_prof_tdatap_get
tsd_rtree_elm_witnesses_get
tsd_rtree_elm_witnesses_set
tsd_rtree_elm_witnessesp_get
tsd_set tsd_set
tsd_tcache_enabled_get tsd_tcache_enabled_get
tsd_tcache_enabled_set tsd_tcache_enabled_set

View File

@ -62,7 +62,7 @@ huge_palloc(tsdn_t *tsdn, arena_t *arena, size_t usize, size_t alignment,
#ifdef JEMALLOC_JET #ifdef JEMALLOC_JET
#undef huge_dalloc_junk #undef huge_dalloc_junk
#define huge_dalloc_junk JEMALLOC_N(huge_dalloc_junk_impl) #define huge_dalloc_junk JEMALLOC_N(n_huge_dalloc_junk)
#endif #endif
void void
huge_dalloc_junk(void *ptr, size_t usize) huge_dalloc_junk(void *ptr, size_t usize)
@ -73,7 +73,7 @@ huge_dalloc_junk(void *ptr, size_t usize)
#ifdef JEMALLOC_JET #ifdef JEMALLOC_JET
#undef huge_dalloc_junk #undef huge_dalloc_junk
#define huge_dalloc_junk JEMALLOC_N(huge_dalloc_junk) #define huge_dalloc_junk JEMALLOC_N(huge_dalloc_junk)
huge_dalloc_junk_t *huge_dalloc_junk = JEMALLOC_N(huge_dalloc_junk_impl); huge_dalloc_junk_t *huge_dalloc_junk = JEMALLOC_N(n_huge_dalloc_junk);
#endif #endif
static void static void