Re: [Qemu-devel] [PATCH v2 09/12] linux-user: Add signal handling for AArch64

2013-05-03 Thread Peter Maydell
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

[Qemu-devel] [PATCH v2 09/12] linux-user: Add signal handling for AArch64

2013-04-29 Thread John Rigby
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