linux-user/alpha: Fix rt sigframe return
We incorrectly used the offset of the non-rt sigframe. Reviewed-by: Laurent Vivier <laurent@vivier.eu> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20210422230227.314751-2-richard.henderson@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
68af19ad72
commit
8f5141a9e1
@ -200,7 +200,7 @@ void setup_rt_frame(int sig, struct target_sigaction *ka,
|
||||
&frame->retcode[1]);
|
||||
__put_user(INSN_CALLSYS, &frame->retcode[2]);
|
||||
/* imb(); */
|
||||
r26 = frame_addr + offsetof(struct target_sigframe, retcode);
|
||||
r26 = frame_addr + offsetof(struct target_rt_sigframe, retcode);
|
||||
}
|
||||
|
||||
if (err) {
|
||||
|
Loading…
Reference in New Issue
Block a user