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
add PTHREAD_NULL
[musl.git]
/
src
/
time
/
nanosleep.c
blob
bc9f7895fa0878be08bdfc01634eede6cbcf81b1
1
#include <time.h>
2
#include
"syscall.h"
3
4
int
nanosleep
(
const struct
timespec
*
req
,
struct
timespec
*
rem
)
5
{
6
return
__syscall_ret
(-
__clock_nanosleep
(
CLOCK_REALTIME
,
0
,
req
,
rem
));
7
}