pause.c 523 B

123456789101112131415161718192021222324252627
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * pause() 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. #define __UCLIBC_HIDE_DEPRECATED__
  10. #include <sys/syscall.h>
  11. #include <unistd.h>
  12. #include <signal.h>
  13. #ifdef __LINUXTHREADS_OLD__
  14. extern __typeof(pause) weak_function pause;
  15. strong_alias(pause, __libc_pause)
  16. #endif
  17. #ifdef __NR_pause
  18. _syscall0(int, pause)
  19. #else
  20. int pause(void)
  21. {
  22. return __sigpause(sigblock(0), 0);
  23. }
  24. #endif