diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-08 04:57:34 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-08 04:57:34 +0000 |
commit | a25d5bd4971bb460bd87c684d066fd58359faf32 (patch) | |
tree | b3a4b5ef6799bd0c3924fc9ba00d65023577f101 /libpthread/nptl/sysdeps/pthread/sigaction.c | |
parent | 2efb2ef4f916151b8abe51fc87ed7b5411d1d91e (diff) | |
download | uClibc-alpine-a25d5bd4971bb460bd87c684d066fd58359faf32.tar.bz2 uClibc-alpine-a25d5bd4971bb460bd87c684d066fd58359faf32.tar.xz |
Fix 'sigaction' for NPTL and other thread models.
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread/sigaction.c')
-rw-r--r-- | libpthread/nptl/sysdeps/pthread/sigaction.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/sigaction.c b/libpthread/nptl/sysdeps/pthread/sigaction.c index 6ec1153ba..b1efb5c37 100644 --- a/libpthread/nptl/sysdeps/pthread/sigaction.c +++ b/libpthread/nptl/sysdeps/pthread/sigaction.c @@ -42,10 +42,9 @@ __sigaction (sig, act, oact) return -1; } - return __libc_sigaction (sig, act, oact); + return __sigaction_internal (sig, act, oact); } -libc_hidden_weak (__sigaction) -weak_alias (__sigaction, sigaction) +weak_alias(__sigaction, sigaction) #else |