diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-02-05 05:46:07 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-02-05 05:46:07 +0000 |
| commit | 3135159411168fcface79912df7a836eb01b7e13 (patch) | |
| tree | c0591b488075ef8a3d363ca922ae8246292ed991 /libpthread/nptl/sysdeps/pthread | |
| parent | 2d2282d01ec3af732c3e6f5af0e34a2527e4d8df (diff) | |
| download | uClibc-alpine-3135159411168fcface79912df7a836eb01b7e13.tar.bz2 uClibc-alpine-3135159411168fcface79912df7a836eb01b7e13.tar.xz | |
Finish implementation of new signals for NPTL which are SIGCANCEL, SIGTIMER and SIGSETXID.
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread')
| -rw-r--r-- | libpthread/nptl/sysdeps/pthread/sigaction.c | 4 | ||||
| -rw-r--r-- | libpthread/nptl/sysdeps/pthread/sigfillset.c | 2 | ||||
| -rw-r--r-- | libpthread/nptl/sysdeps/pthread/sigprocmask.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/sigaction.c b/libpthread/nptl/sysdeps/pthread/sigaction.c index 6ab8a5279..7524b3e34 100644 --- a/libpthread/nptl/sysdeps/pthread/sigaction.c +++ b/libpthread/nptl/sysdeps/pthread/sigaction.c @@ -28,7 +28,7 @@ SIGCANCEL or SIGTIMER to be handled. */ # define LIBC_SIGACTION 1 -# include_next <sigaction.c> +# include <sigaction.c> int __sigaction (sig, act, oact) @@ -44,7 +44,7 @@ __sigaction (sig, act, oact) return __libc_sigaction (sig, act, oact); } -weak_alias(__sigaction, sigaction) +hidden_weak_alias(__sigaction, sigaction) #else diff --git a/libpthread/nptl/sysdeps/pthread/sigfillset.c b/libpthread/nptl/sysdeps/pthread/sigfillset.c index c95847f65..fbe458f55 100644 --- a/libpthread/nptl/sysdeps/pthread/sigfillset.c +++ b/libpthread/nptl/sysdeps/pthread/sigfillset.c @@ -18,4 +18,4 @@ #include <pthreadP.h> -#include_next <sigfillset.c> +#include <../../../../libc/signal/sigfillset.c> diff --git a/libpthread/nptl/sysdeps/pthread/sigprocmask.c b/libpthread/nptl/sysdeps/pthread/sigprocmask.c index 3c3209384..7a3891d32 100644 --- a/libpthread/nptl/sysdeps/pthread/sigprocmask.c +++ b/libpthread/nptl/sysdeps/pthread/sigprocmask.c @@ -18,4 +18,4 @@ #include <pthreadP.h> -#include_next <sigprocmask.c> +#include <../../../../libc/sysdeps/linux/common/sigprocmask.c> |
