nanosleep.c 552 B

123456789101112131415161718192021
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * nanosleep() for uClibc
  4. *
  5. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  6. *
  7. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  8. */
  9. #include <sys/syscall.h>
  10. #include <time.h>
  11. #include <cancel.h>
  12. #define __NR___nanosleep_nocancel __NR_nanosleep
  13. static _syscall2(int, __NC(nanosleep), const struct timespec *, req,
  14. struct timespec *, rem);
  15. CANCELLABLE_SYSCALL(int, nanosleep,
  16. (const struct timespec *req, struct timespec *rem),
  17. (req, rem))
  18. lt_libc_hidden(nanosleep)