diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-10 18:15:33 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-10 18:15:33 +0000 |
commit | 76924b4458605d292202ab87be64853dba1c0a70 (patch) | |
tree | 995ac0717ba38e2c74a832b1f9d7c4e0c94ce513 /libc/sysdeps/linux/mips/sigaction.c | |
parent | ec92d6fe7624b49e266c5e57e7d12c4512dd290b (diff) | |
download | uClibc-alpine-76924b4458605d292202ab87be64853dba1c0a70.tar.bz2 uClibc-alpine-76924b4458605d292202ab87be64853dba1c0a70.tar.xz |
Finish up changes for sigaction and NPTL.
Diffstat (limited to 'libc/sysdeps/linux/mips/sigaction.c')
-rw-r--r-- | libc/sysdeps/linux/mips/sigaction.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/mips/sigaction.c b/libc/sysdeps/linux/mips/sigaction.c index e35f11806..37637093f 100644 --- a/libc/sysdeps/linux/mips/sigaction.c +++ b/libc/sysdeps/linux/mips/sigaction.c @@ -32,7 +32,7 @@ /* If ACT is not NULL, change the action for SIG to *ACT. If OACT is not NULL, put the old action for SIG in *OACT. */ -int attribute_hidden __sigaction_internal (int sig, const struct sigaction *act, struct sigaction *oact) +int __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact) { int result; struct kernel_sigaction kact, koact; @@ -72,7 +72,7 @@ extern void restore (void) asm ("__restore") attribute_hidden; /* If ACT is not NULL, change the action for SIG to *ACT. If OACT is not NULL, put the old action for SIG in *OACT. */ -int attribute_hidden __sigaction_internal (int sig, const struct sigaction *act, struct sigaction *oact) +int __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact) { int result; struct old_kernel_sigaction kact, koact; @@ -112,5 +112,6 @@ int attribute_hidden __sigaction_internal (int sig, const struct sigaction *act, #endif #ifndef LIBC_SIGACTION -weak_alias(__sigaction_internal,sigaction) +hidden_weak_alias(__libc_sigaction,__sigaction) +weak_alias(__libc_sigaction,sigaction) #endif |