_exit.c 700 B

123456789101112131415161718192021222324252627282930
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * exit syscall 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 <features.h>
  10. #include <errno.h>
  11. #include <unistd.h>
  12. #include <sys/types.h>
  13. #include <sys/syscall.h>
  14. libc_hidden_proto(_exit)
  15. #ifndef INLINE_SYSCALL
  16. #define INLINE_SYSCALL(name, nr, args...) __syscall_exit (args)
  17. #define __NR___syscall_exit __NR_exit
  18. static __inline__ _syscall1(void, __syscall_exit, int, status);
  19. #endif
  20. void attribute_noreturn _exit(int status)
  21. {
  22. /* The loop is added only to keep gcc happy. */
  23. while(1)
  24. INLINE_SYSCALL(exit, 1, status);
  25. }
  26. libc_hidden_def(_exit)