repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vfs: check userland buffers before reading them.
[haiku.git]
/
src
/
system
/
libroot
/
posix
/
signal
/
sigwaitinfo.cpp
blob
515c5d25a6255b99a7a215dbdb47c74049d72d6f
1
/*
2
* Copyright 2011, Ingo Weinhold, ingo_weinhold@gmx.de.
3
* Distributed under the terms of the MIT License.
4
*/
5
6
7
#include <signal.h>
8
9
10
int
11
sigwaitinfo
(
const
sigset_t
*
set
,
siginfo_t
*
info
)
12
{
13
return
sigtimedwait
(
set
,
info
,
NULL
);
14
}