diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:56:21 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:59:06 +0200 |
commit | 0c71122c0cee483a4e6abcdbe78a1595eefe86e2 (patch) | |
tree | f31e337cfc0c1c35dc1b4658ceb54894d5564047 /malloc/arena.c | |
parent | ca4ec8039628cac6600541472b068be7535d4bb4 (diff) | |
download | glibc-0c71122c0cee483a4e6abcdbe78a1595eefe86e2.zip glibc-0c71122c0cee483a4e6abcdbe78a1595eefe86e2.tar.gz glibc-0c71122c0cee483a4e6abcdbe78a1595eefe86e2.tar.bz2 |
malloc: Remove the internal_function attribute
Diffstat (limited to 'malloc/arena.c')
-rw-r--r-- | malloc/arena.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/malloc/arena.c b/malloc/arena.c index afd4232..9e5a62d 100644 --- a/malloc/arena.c +++ b/malloc/arena.c @@ -141,7 +141,6 @@ int __malloc_initialized = -1; subsystem. */ void -internal_function __malloc_fork_lock_parent (void) { if (__malloc_initialized < 1) @@ -162,7 +161,6 @@ __malloc_fork_lock_parent (void) } void -internal_function __malloc_fork_unlock_parent (void) { if (__malloc_initialized < 1) @@ -179,7 +177,6 @@ __malloc_fork_unlock_parent (void) } void -internal_function __malloc_fork_unlock_child (void) { if (__malloc_initialized < 1) @@ -246,7 +243,6 @@ TUNABLE_CALLBACK_FNDECL (set_tcache_unsorted_limit, size_t) extern char **_environ; static char * -internal_function next_env_entry (char ***position) { char **current = *position; @@ -458,7 +454,6 @@ static char *aligned_heap_area; of the page size. */ static heap_info * -internal_function new_heap (size_t size, size_t top_pad) { size_t pagesize = GLRO (dl_pagesize); @@ -602,7 +597,6 @@ shrink_heap (heap_info *h, long diff) } while (0) static int -internal_function heap_trim (heap_info *heap, size_t pad) { mstate ar_ptr = heap->ar_ptr; @@ -880,7 +874,6 @@ out: } static mstate -internal_function arena_get2 (size_t size, mstate avoid_arena) { mstate a; |