diff options
author | Laurent Vivier <laurent@vivier.eu> | 2020-03-10 11:33:51 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-03-20 16:02:00 +0100 |
commit | 76a691f1af65f64d070ace531adef01fe187e29a (patch) | |
tree | dfc7d16ec758c634b357e93983fe2f149d90e66f /linux-user/ppc/signal.c | |
parent | 5bcb4986384e02669418a411cac10377cf48e698 (diff) | |
download | qemu-76a691f1af65f64d070ace531adef01fe187e29a.zip qemu-76a691f1af65f64d070ace531adef01fe187e29a.tar.gz qemu-76a691f1af65f64d070ace531adef01fe187e29a.tar.bz2 |
linux-user, ppc: add syscall table generation support
Copy syscall.tbl and syscallhdr.sh from linux/arch/ppc/kernel/syscalls v5.5
Update syscallhdr.sh to generate QEMU syscall_nr.h
and to not generate the entry if entry point is sys_ni_syscall.
Fix ppc/signal.c to define do_sigreturn() for TARGET_ABI32.
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>
Message-Id: <20200310103403.3284090-10-laurent@vivier.eu>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/ppc/signal.c')
-rw-r--r-- | linux-user/ppc/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/ppc/signal.c b/linux-user/ppc/signal.c index 5b82af6..0c4e7ba 100644 --- a/linux-user/ppc/signal.c +++ b/linux-user/ppc/signal.c @@ -588,7 +588,7 @@ sigsegv: } -#if !defined(TARGET_PPC64) +#if !defined(TARGET_PPC64) || defined(TARGET_ABI32) long do_sigreturn(CPUPPCState *env) { struct target_sigcontext *sc = NULL; |