diff options
| author | David Xu <davidxu@FreeBSD.org> | 2007-11-21 05:23:54 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2007-11-21 05:23:54 +0000 |
| commit | 922d56f9ded0217f1bbbdd6a9b9e01bb2ae25be6 (patch) | |
| tree | bcb3db0bf45aa93ba64043e1bf6db51f159104e3 /lib | |
| parent | 6fdfcacb4a7a4a9f24e9c5c8c76a85d0ab5dc99a (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libthr/thread/thr_sig.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libthr/thread/thr_sig.c b/lib/libthr/thread/thr_sig.c index 8f3b055a3afe..6da4b90538f7 100644 --- a/lib/libthr/thread/thr_sig.c +++ b/lib/libthr/thread/thr_sig.c @@ -52,8 +52,13 @@ int ___pause(void); int _raise(int); int __sigtimedwait(const sigset_t *set, siginfo_t *info, const struct timespec * timeout); +int _sigtimedwait(const sigset_t *set, siginfo_t *info, + const struct timespec * timeout); int __sigwaitinfo(const sigset_t *set, siginfo_t *info); +int _sigwaitinfo(const sigset_t *set, siginfo_t *info); int __sigwait(const sigset_t *set, int *sig); +int _sigwait(const sigset_t *set, int *sig); +int __sigsuspend(const sigset_t *sigmask); static void |
