On 30 April 2013 07:38, John Rigby wrote:
> +/* set up the stack frame for unwinding */
> +err |= __put_user(env->xregs[29], &sf->fp);
__put_user can't fail so all this collection of error
status is unnecessary. (Every address we write with it
has to be covered by the lock_user_struct() c
From: Andreas Schwab
This patch adds signal handling for AArch64. The code is based on the
respective source in the Linux kernel.
Signed-off-by: Andreas Schwab
Signed-off-by: Alexander Graf
---
linux-user/arm/target_signal.h |4 +
linux-user/signal.c| 263