From 95a2ed35514f8e5cc1d1de423a589dedc54df092 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Fri, 15 Apr 2011 17:49:47 +0200 Subject: add simplified __sigemptyset for internal use Use __sigemptyset instead of sigemptyset. Remove hidden sigemptyset. Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libpthread/nptl/sysdeps/unix') diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c b/libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c index 1664af5cf..2f33e9981 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c @@ -49,7 +49,7 @@ timer_sigev_thread (void *arg) surprising for user code, although valid. We unblock all signals. */ sigset_t ss; - sigemptyset (&ss); + __sigemptyset (&ss); INTERNAL_SYSCALL_DECL (err); INTERNAL_SYSCALL (rt_sigprocmask, err, 4, SIG_SETMASK, &ss, NULL, _NSIG / 8); @@ -75,7 +75,7 @@ timer_helper_thread (void *arg) /* Wait for the SIGTIMER signal, allowing the setXid signal, and none else. */ sigset_t ss; - sigemptyset (&ss); + __sigemptyset (&ss); __sigaddset (&ss, SIGTIMER); /* Endless loop of waiting for signals. The loop is only ended when -- cgit v1.2.3