__syscall_error.c 526 B

123456789101112131415161718192021
  1. /* Wrapper for setting errno.
  2. *
  3. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  4. *
  5. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. */
  7. #include <errno.h>
  8. #include <features.h>
  9. /* This routine is jumped to by all the syscall handlers, to stash
  10. * an error number into errno. */
  11. long __syscall_error(void) attribute_hidden;
  12. long __syscall_error(void)
  13. {
  14. register int err_no __asm__ ("%rcx");
  15. __asm__ ("mov %rax, %rcx\n\t"
  16. "neg %rcx");
  17. __set_errno(err_no);
  18. return -1;
  19. }