Blame malloc/Versions

Packit 6c4009
libc {
Packit 6c4009
  GLIBC_2.0 {
Packit 6c4009
    # global variables
Packit 6c4009
    _obstack;
Packit 6c4009
Packit 6c4009
    # interface of malloc functions
Packit 6c4009
    __libc_calloc; __libc_free; __libc_mallinfo; __libc_malloc;
Packit 6c4009
    __libc_mallopt; __libc_memalign; __libc_pvalloc; __libc_realloc;
Packit 6c4009
    __libc_valloc;
Packit 6c4009
    __malloc_initialize_hook; __free_hook; __malloc_hook; __realloc_hook;
Packit 6c4009
    __memalign_hook; __after_morecore_hook;
Packit 6c4009
    __malloc_initialized; __default_morecore; __morecore;
Packit 6c4009
Packit 6c4009
    # functions used in inline functions or macros
Packit 6c4009
    _obstack_allocated_p; _obstack_begin; _obstack_begin_1;
Packit 6c4009
    _obstack_free; _obstack_memory_used; _obstack_newchunk;
Packit 6c4009
Packit 6c4009
    # variables in normal name space
Packit 6c4009
    mallwatch; obstack_alloc_failed_handler; obstack_exit_failure;
Packit 6c4009
Packit 6c4009
    # c*
Packit 6c4009
    calloc; cfree;
Packit 6c4009
Packit 6c4009
    # f*
Packit 6c4009
    free;
Packit 6c4009
Packit 6c4009
    # m*
Packit 6c4009
    mallinfo; malloc; malloc_get_state; malloc_set_state; malloc_stats;
Packit 6c4009
    malloc_trim; malloc_usable_size; mallopt; memalign; mprobe; mtrace;
Packit 6c4009
    muntrace;
Packit 6c4009
Packit 6c4009
    # o*
Packit 6c4009
    obstack_free;
Packit 6c4009
Packit 6c4009
    # p*
Packit 6c4009
    pvalloc;
Packit 6c4009
Packit 6c4009
    # r*
Packit 6c4009
    realloc;
Packit 6c4009
Packit 6c4009
    # t*
Packit 6c4009
    tr_break;
Packit 6c4009
Packit 6c4009
    # v*
Packit 6c4009
    valloc;
Packit 6c4009
  }
Packit 6c4009
  GLIBC_2.1 {
Packit 6c4009
    # Special functions.
Packit 6c4009
    __libc_freeres;
Packit 6c4009
  }
Packit 6c4009
  GLIBC_2.2 {
Packit 6c4009
    # m*
Packit 6c4009
    mcheck_check_all; mcheck_pedantic;
Packit 6c4009
Packit 6c4009
    # p*
Packit 6c4009
    posix_memalign;
Packit 6c4009
  }
Packit 6c4009
  GLIBC_2.10 {
Packit 6c4009
    malloc_info;
Packit 6c4009
  }
Packit 6c4009
  GLIBC_2.16 {
Packit 6c4009
    aligned_alloc;
Packit 6c4009
  }
Packit 6c4009
  GLIBC_2.26 {
Packit 6c4009
    reallocarray;
Packit 6c4009
  }
Packit 6c4009
  GLIBC_PRIVATE {
Packit 6c4009
    # Internal startup hook for libpthread.
Packit 6c4009
    __libc_malloc_pthread_startup;
Packit 6c4009
Packit 6c4009
    # Internal destructor hook for libpthread.
Packit 6c4009
    __libc_thread_freeres;
Packit 6c4009
Packit 6c4009
    # struct scratch_buffer support
Packit 6c4009
    __libc_scratch_buffer_grow;
Packit 6c4009
    __libc_scratch_buffer_grow_preserve;
Packit 6c4009
    __libc_scratch_buffer_set_array_size;
Packit 6c4009
Packit 6c4009
    # Internal name for reallocarray
Packit 6c4009
    __libc_reallocarray;
Packit 6c4009
Packit 6c4009
    # dynarray support
Packit 6c4009
    __libc_dynarray_at_failure;
Packit 6c4009
    __libc_dynarray_emplace_enlarge;
Packit 6c4009
    __libc_dynarray_finalize;
Packit 6c4009
    __libc_dynarray_resize;
Packit 6c4009
    __libc_dynarray_resize_clear;
Packit 6c4009
Packit 6c4009
    # struct alloc_buffer support
Packit 6c4009
    __libc_alloc_buffer_alloc_array;
Packit 6c4009
    __libc_alloc_buffer_allocate;
Packit 6c4009
    __libc_alloc_buffer_copy_bytes;
Packit 6c4009
    __libc_alloc_buffer_copy_string;
Packit 6c4009
    __libc_alloc_buffer_create_failure;
Packit 6c4009
  }
Packit 6c4009
}