mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-04 16:50:13 +00:00
(ELF_MACHINE_RUNTIME_TRAMPOLINE): Remove the 3rd arg and add
declaration for _dl_runtime_resolve and _dl_runtime_profile.
This commit is contained in:
parent
909a2333c7
commit
9ba537d289
@ -1,5 +1,5 @@
|
|||||||
/* Machine-dependent ELF dynamic relocation inline functions. Alpha version.
|
/* Machine-dependent ELF dynamic relocation inline functions. Alpha version.
|
||||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson <rth@tamu.edu>.
|
Contributed by Richard Henderson <rth@tamu.edu>.
|
||||||
|
|
||||||
@ -205,7 +205,9 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
|
|||||||
#else
|
#else
|
||||||
#define ELF_MACHINE_RUNTIME_TRAMPOLINE \
|
#define ELF_MACHINE_RUNTIME_TRAMPOLINE \
|
||||||
TRAMPOLINE_TEMPLATE (_dl_runtime_resolve, fixup, imb); \
|
TRAMPOLINE_TEMPLATE (_dl_runtime_resolve, fixup, imb); \
|
||||||
strong_alias (_dl_runtime_resolve, _dl_runtime_profile, #nop);
|
extern void _dl_runtime_resolve (void); \
|
||||||
|
extern void _dl_runtime_profile (void); \
|
||||||
|
strong_alias (_dl_runtime_resolve, _dl_runtime_profile);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Initial entry point code for the dynamic linker.
|
/* Initial entry point code for the dynamic linker.
|
||||||
|
Loading…
Reference in New Issue
Block a user