mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-05 19:35:52 +03:00
malloc: Add missing internal_function attributes on function definitions
Fixes build on i386 after commit 29d794863c
.
This commit is contained in:
@@ -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>
|
2016-04-14 Stefan Liebler <stli@linux.vnet.ibm.com>
|
||||||
|
|
||||||
* stdio-common/printf_fp.c (__printf_fp_l):
|
* stdio-common/printf_fp.c (__printf_fp_l):
|
||||||
|
@@ -136,6 +136,7 @@ int __malloc_initialized = -1;
|
|||||||
subsystem. */
|
subsystem. */
|
||||||
|
|
||||||
void
|
void
|
||||||
|
internal_function
|
||||||
__malloc_fork_lock_parent (void)
|
__malloc_fork_lock_parent (void)
|
||||||
{
|
{
|
||||||
if (__malloc_initialized < 1)
|
if (__malloc_initialized < 1)
|
||||||
@@ -156,6 +157,7 @@ __malloc_fork_lock_parent (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
internal_function
|
||||||
__malloc_fork_unlock_parent (void)
|
__malloc_fork_unlock_parent (void)
|
||||||
{
|
{
|
||||||
if (__malloc_initialized < 1)
|
if (__malloc_initialized < 1)
|
||||||
@@ -172,6 +174,7 @@ __malloc_fork_unlock_parent (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
internal_function
|
||||||
__malloc_fork_unlock_child (void)
|
__malloc_fork_unlock_child (void)
|
||||||
{
|
{
|
||||||
if (__malloc_initialized < 1)
|
if (__malloc_initialized < 1)
|
||||||
|
Reference in New Issue
Block a user