mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
malloc: Add missing internal_function attributes on function definitions
Fixes build on i386 after commit 29d794863c
.
This commit is contained in:
parent
b1b8f5d89d
commit
186fe877f3
@ -1,3 +1,9 @@
|
||||
2016-04-14 Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
* malloc/arena.c (__malloc_fork_lock_parent)
|
||||
(__malloc_fork_unlock_parent, __malloc_fork_unlock_child): Add
|
||||
internal_function attribute.
|
||||
|
||||
2016-04-14 Stefan Liebler <stli@linux.vnet.ibm.com>
|
||||
|
||||
* stdio-common/printf_fp.c (__printf_fp_l):
|
||||
|
@ -136,6 +136,7 @@ int __malloc_initialized = -1;
|
||||
subsystem. */
|
||||
|
||||
void
|
||||
internal_function
|
||||
__malloc_fork_lock_parent (void)
|
||||
{
|
||||
if (__malloc_initialized < 1)
|
||||
@ -156,6 +157,7 @@ __malloc_fork_lock_parent (void)
|
||||
}
|
||||
|
||||
void
|
||||
internal_function
|
||||
__malloc_fork_unlock_parent (void)
|
||||
{
|
||||
if (__malloc_initialized < 1)
|
||||
@ -172,6 +174,7 @@ __malloc_fork_unlock_parent (void)
|
||||
}
|
||||
|
||||
void
|
||||
internal_function
|
||||
__malloc_fork_unlock_child (void)
|
||||
{
|
||||
if (__malloc_initialized < 1)
|
||||
|
Loading…
Reference in New Issue
Block a user