summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_sys_nanosleep.c
blob: 699de4654f8f8463f68007fa57a5108ce5e4db77 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <time.h>
#include <unistd.h>

#include <pthread.h>
#include "thread_internal.h"

int nanosleep(const struct timespec *req, struct timespec *rem)
{
  __TEST_CANCEL();
  return __libc_nanosleep(req,rem);
}