repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
signal.h: add new sa_flags from linux v5.11
[musl.git]
/
src
/
unistd
/
pause.c
blob
90bbf4ca8ab5320a061d9e3ca0d7d854a90f32d8
1
#include <unistd.h>
2
#include
"syscall.h"
3
4
int
pause
(
void
)
5
{
6
#ifdef SYS_pause
7
return
syscall_cp
(
SYS_pause
);
8
#else
9
return
syscall_cp
(
SYS_ppoll
,
0
,
0
,
0
,
0
);
10
#endif
11
}