From 31f2b819c68f20ff188724669d3044a0680e3ceb Mon Sep 17 00:00:00 2001 From: davidxu Date: Tue, 4 Apr 2006 02:57:49 +0000 Subject: WARNS level 4 cleanup. --- lib/libthr/thread/thr_sig.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'lib/libthr/thread/thr_sig.c') diff --git a/lib/libthr/thread/thr_sig.c b/lib/libthr/thread/thr_sig.c index 71f97a0..865fb72 100644 --- a/lib/libthr/thread/thr_sig.c +++ b/lib/libthr/thread/thr_sig.c @@ -26,6 +26,7 @@ * $FreeBSD$ */ +#include "namespace.h" #include #include #include @@ -35,6 +36,7 @@ #include #include #include +#include "un-namespace.h" #include "thr_private.h" @@ -45,8 +47,14 @@ #define DBG_MSG(x...) #endif +int __sigtimedwait(const sigset_t *set, siginfo_t *info, + const struct timespec * timeout); +int __sigwaitinfo(const sigset_t *set, siginfo_t *info); +int __sigwait(const sigset_t *set, int *sig); + static void -sigcancel_handler(int sig, siginfo_t *info, ucontext_t *ucp) +sigcancel_handler(int sig __unused, + siginfo_t *info __unused, ucontext_t *ucp __unused) { struct pthread *curthread = _get_curthread(); -- cgit v1.1