mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
(__pthread_initialize_minimal_internal): Renamed from __pthread_initialize_minimal. Make old name an alias. This converts a normal relocation into a relative relocation.
This commit is contained in:
@ -138,7 +138,7 @@ void
|
|||||||
#ifdef SHARED
|
#ifdef SHARED
|
||||||
__attribute ((constructor))
|
__attribute ((constructor))
|
||||||
#endif
|
#endif
|
||||||
__pthread_initialize_minimal (void)
|
__pthread_initialize_minimal_internal (void)
|
||||||
{
|
{
|
||||||
#ifndef SHARED
|
#ifndef SHARED
|
||||||
/* Unlike in the dynamically linked case the dynamic linker has not
|
/* Unlike in the dynamically linked case the dynamic linker has not
|
||||||
@ -210,3 +210,5 @@ __pthread_initialize_minimal (void)
|
|||||||
__libc_pthread_init (&__fork_generation, __reclaim_stacks,
|
__libc_pthread_init (&__fork_generation, __reclaim_stacks,
|
||||||
ptr_pthread_functions);
|
ptr_pthread_functions);
|
||||||
}
|
}
|
||||||
|
strong_alias (__pthread_initialize_minimal_internal,
|
||||||
|
__pthread_initialize_minimal)
|
||||||
|
Reference in New Issue
Block a user