Dmitry V. Levin
fa6c0879c7
* sigreturn.c (arch_sigreturn): New function. (sys_sigreturn): Use it. Return RVAL_DECODED. * linux/alpha/arch_sigreturn.c: Update. * linux/crisv10/arch_sigreturn.c: Likewise. * linux/m68k/arch_sigreturn.c: Likewise. * linux/microblaze/arch_sigreturn.c: Likewise. * linux/x86_64/arch_sigreturn.c: Likewise.
29 lines
441 B
C
29 lines
441 B
C
#include "defs.h"
|
|
#include <signal.h>
|
|
#include "regs.h"
|
|
#include "ptrace.h"
|
|
|
|
#if defined HAVE_ASM_SIGCONTEXT_H && !defined HAVE_STRUCT_SIGCONTEXT
|
|
# include <asm/sigcontext.h>
|
|
#endif
|
|
|
|
#ifndef NSIG
|
|
# warning NSIG is not defined, using 32
|
|
# define NSIG 32
|
|
#elif NSIG < 32
|
|
# error NSIG < 32
|
|
#endif
|
|
|
|
static void
|
|
arch_sigreturn(struct tcb *tcp)
|
|
{
|
|
#include "arch_sigreturn.c"
|
|
}
|
|
|
|
SYS_FUNC(sigreturn)
|
|
{
|
|
arch_sigreturn(tcp);
|
|
|
|
return RVAL_DECODED;
|
|
}
|