repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isblank() implementation.
[minix.git]
/
lib
/
libc
/
posix
/
_sigsuspend.c
blob
01649a37f4a82d36964bbfa4c0033a97face78f7
1
#include <lib.h>
2
#define sigsuspend _sigsuspend
3
#include <signal.h>
4
5
PUBLIC
int
sigsuspend
(
set
)
6
_CONST sigset_t
*
set
;
7
{
8
message m
;
9
10
m
.
m2_l1
= (
long
) *
set
;
11
return
(
_syscall
(
MM
,
SIGSUSPEND
, &
m
));
12
}