From 6a78127da45aa0299549bba1c045b41087fbe6db Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 21 Apr 2011 22:36:59 +0200 Subject: waitid.c: use cancel.h and use __waitpid_nocancel in fallback code Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/common/waitid.c | 58 +++++++++++--------------------------- 1 file changed, 17 insertions(+), 41 deletions(-) (limited to 'libc') diff --git a/libc/sysdeps/linux/common/waitid.c b/libc/sysdeps/linux/common/waitid.c index c8115f9a5..58f467320 100644 --- a/libc/sysdeps/linux/common/waitid.c +++ b/libc/sysdeps/linux/common/waitid.c @@ -8,43 +8,19 @@ #include #if defined __USE_SVID || defined __USE_XOPEN -# include -# include -# include -# include - -# ifdef __NR_waitid -# ifdef __UCLIBC_HAS_THREADS_NATIVE__ -# include -# else -# define SINGLE_THREAD_P 1 -# endif - -/* The waitid() POSIX interface takes 4 arguments, but the kernel function - * actually takes 5. The fifth is a pointer to struct rusage. Make sure - * we pass NULL rather than letting whatever was in the register bleed up. - */ -#define __NR_waitid5 __NR_waitid -static __always_inline -_syscall5(int, waitid5, idtype_t, idtype, id_t, id, siginfo_t*, infop, - int, options, struct rusage*, ru) -# endif +#include +#include +#include +#ifndef __NR_waitid +# include +#endif -int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options) +static int __NC(waitid)(idtype_t idtype, id_t id, siginfo_t *infop, int options) { -# ifdef __NR_waitid - if (SINGLE_THREAD_P) - return waitid5(idtype, id, infop, options, NULL); - -# ifdef __UCLIBC_HAS_THREADS_NATIVE__ - int oldtype = LIBC_CANCEL_ASYNC (); - int result = waitid5(idtype, id, infop, options, NULL); - LIBC_CANCEL_RESET (oldtype); - return result; -# endif - -# elif defined __NR_waitpid +#ifdef __NR_waitid + return INLINE_SYSCALL(waitid, 5, idtype, id, infop, options, NULL); +#else switch (idtype) { case P_PID: if (id <= 0) @@ -65,17 +41,17 @@ int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options) } memset(infop, 0, sizeof *infop); - infop->si_pid = waitpid(id, &infop->si_status, options -# ifdef WEXITED + infop->si_pid = __NC(waitpid)(id, &infop->si_status, options +# ifdef WEXITED &~ WEXITED -# endif +# endif ); if (infop->si_pid < 0) return infop->si_pid; return 0; -# else - __set_errno(ENOSYS); - return -1; -# endif +#endif } +CANCELLABLE_SYSCALL(int, waitid, (idtype_t idtype, id_t id, siginfo_t *infop, int options), + (idtype, id, infop, options)) + #endif -- cgit v1.2.3