[Glibc-bsd-commits] r4714 - trunk/glibc-ports/kfreebsd

Petr Salinger ps-guest at alioth.debian.org
Tue Jul 9 19:40:21 UTC 2013


Author: ps-guest
Date: 2013-07-09 19:40:21 +0000 (Tue, 09 Jul 2013)
New Revision: 4714

Modified:
   trunk/glibc-ports/kfreebsd/syscalls-inline.h
Log:
add __syscall_sig*wait* prototypes



Modified: trunk/glibc-ports/kfreebsd/syscalls-inline.h
===================================================================
--- trunk/glibc-ports/kfreebsd/syscalls-inline.h	2013-07-09 19:39:23 UTC (rev 4713)
+++ trunk/glibc-ports/kfreebsd/syscalls-inline.h	2013-07-09 19:40:21 UTC (rev 4714)
@@ -21,9 +21,7 @@
 #define KFREEBSD_INLINE_SYSCALLS_H
 
 #include <sys/types.h>
-#define __need_sigset_t
 #include <signal.h>
-
 #include <syscalls-internal.h>
 
 struct iovec;
@@ -58,7 +56,13 @@
 libc_hidden_proto (__syscall_sigprocmask)
 libc_hidden_proto (__syscall_nanosleep)
 
-
+int __syscall_sigwait     (const sigset_t *set, int *sig);
+int __syscall_sigwaitinfo (const sigset_t *set, siginfo_t *info);
+int __syscall_sigtimedwait(const sigset_t *set, siginfo_t *info, const struct timespec *timeout);
+libc_hidden_proto (__syscall_sigwait)
+libc_hidden_proto (__syscall_sigwaitinfo)
+libc_hidden_proto (__syscall_sigtimedwait)
+                           
 int __syscall_thr_exit(long *p);
 int __syscall_thr_kill(long id, int sig);
 int __syscall_thr_kill2(int pid, long id, int sig);




More information about the Glibc-bsd-commits mailing list