Linux Audio

Check our new training course

Loading...
#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 = syscall2(__NR_nanosleep, (long)req, (long)rem);
	CANCELPT_END;
	return ret;
}