1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

ld.so: Remove internal_function attribute from various functions

These functions are invoked from other DSOs and should therefore
use the standard calling convention.
This commit is contained in:
Florian Weimer
2017-08-13 21:11:54 +02:00
parent 52bcdf267b
commit 3012cfb0d2
7 changed files with 23 additions and 22 deletions

View File

@ -104,7 +104,6 @@ _dl_signal_exception (int errcode, struct dl_exception *exception,
libc_hidden_def (_dl_signal_exception)
void
internal_function
_dl_signal_error (int errcode, const char *objname, const char *occation,
const char *errstring)
{
@ -150,7 +149,6 @@ _dl_signal_cexception (int errcode, struct dl_exception *exception,
}
void
internal_function
_dl_signal_cerror (int errcode, const char *objname, const char *occation,
const char *errstring)
{
@ -210,7 +208,6 @@ _dl_catch_exception (struct dl_exception *exception,
libc_hidden_def (_dl_catch_exception)
int
internal_function
_dl_catch_error (const char **objname, const char **errstring,
bool *mallocedp, void (*operate) (void *), void *args)
{
@ -225,7 +222,6 @@ libc_hidden_def (_dl_catch_error)
#if DL_ERROR_BOOTSTRAP
void
internal_function
_dl_receive_error (receiver_fct fct, void (*operate) (void *), void *args)
{
struct catch *old_catch = catch_hook;