From 24f8b4932ab554e0639fbdb43598a5b39929297c Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 8 Jun 2006 09:28:09 +0000 Subject: drop the __sigqueue symbol for now --- libc/sysdeps/linux/common/sigqueue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux') diff --git a/libc/sysdeps/linux/common/sigqueue.c b/libc/sysdeps/linux/common/sigqueue.c index caf772979..3d86414d9 100644 --- a/libc/sysdeps/linux/common/sigqueue.c +++ b/libc/sysdeps/linux/common/sigqueue.c @@ -33,7 +33,7 @@ libc_hidden_proto(memset) static inline _syscall3(int, __libc_rt_sigqueueinfo, pid_t, pid, int, sig, void*, value); /* Return any pending signal or wait for one for the given time. */ -int __sigqueue (pid_t pid, int sig, const union sigval val) +int sigqueue (pid_t pid, int sig, const union sigval val) { siginfo_t info; @@ -49,5 +49,5 @@ int __sigqueue (pid_t pid, int sig, const union sigval val) return __libc_rt_sigqueueinfo(pid, sig, __ptrvalue (&info)); } -weak_alias (__sigqueue, sigqueue) + #endif -- cgit v1.2.3