blob: 2f65762f8f5f01981f15c4e4c7c735fc96a898e8 (
plain) (
tree)
|
|
#include <unistd.h>
#include <time.h>
#include "syscall.h"
#include "libc.h"
int nanosleep(const struct timespec *req, struct timespec *rem)
{
int ret;
CANCELPT_BEGIN;
ret = syscall(SYS_nanosleep, req, rem);
CANCELPT_END;
return ret;
}
|