__syscall_sigaction.c 427 B

1234567891011121314151617
  1. /*
  2. * __syscall_sigaction() for uClibc
  3. *
  4. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  5. *
  6. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  7. */
  8. #include <sys/syscall.h>
  9. #ifndef __NR_rt_sigaction
  10. #define __NR___syscall_sigaction __NR_sigaction
  11. #include <signal.h>
  12. _syscall3(int, __syscall_sigaction, int, signum, const struct sigaction *,
  13. act, struct sigaction *, oldact)
  14. #endif