Home | History | Annotate | Download | only in strace
      1 #include "defs.h"
      2 #include "nsig.h"
      3 #include "regs.h"
      4 #include "ptrace.h"
      5 
      6 #if defined HAVE_ASM_SIGCONTEXT_H && !defined HAVE_STRUCT_SIGCONTEXT
      7 # include <asm/sigcontext.h>
      8 #endif
      9 
     10 #include "arch_sigreturn.c"
     11 
     12 SYS_FUNC(sigreturn)
     13 {
     14 	arch_sigreturn(tcp);
     15 
     16 	return RVAL_DECODED;
     17 }
     18