Re: [PATCH 04/21] linux-user/arm: Implement setup_sigtramp

2021-06-16 Thread Richard Henderson
On 6/16/21 6:49 AM, Alex Bennée wrote: ../../linux-user/arm/signal.c: In function ‘setup_sigtramp’: ../../linux-user/arm/signal.c:847:47: error: expected ‘,’ before ‘)’ token _Static_assert(SIGFRAME_FDPIC_OFS <= 0xfff); Heh. Apparently, _Static_assert with no message parameter is

Re: [PATCH 04/21] linux-user/arm: Implement setup_sigtramp

2021-06-16 Thread Alex Bennée
Alex Bennée writes: > Richard Henderson writes: > >> ARM is more complicated than the others, in that we also >> have trampolines for using SA_RESTORER with FDPIC, and >> we need to create trampolines for both ARM and Thumb modes. >> >> Cc: qemu-...@nongnu.org >> Signed-off-by: Richard Henderson

Re: [PATCH 04/21] linux-user/arm: Implement setup_sigtramp

2021-06-16 Thread Alex Bennée
Richard Henderson writes: > ARM is more complicated than the others, in that we also > have trampolines for using SA_RESTORER with FDPIC, and > we need to create trampolines for both ARM and Thumb modes. > > Cc: qemu-...@nongnu.org > Signed-off-by: Richard Henderson > --- > linux-user/arm/targe

[PATCH 04/21] linux-user/arm: Implement setup_sigtramp

2021-06-15 Thread Richard Henderson
ARM is more complicated than the others, in that we also have trampolines for using SA_RESTORER with FDPIC, and we need to create trampolines for both ARM and Thumb modes. Cc: qemu-...@nongnu.org Signed-off-by: Richard Henderson --- linux-user/arm/target_signal.h | 2 + linux-user/arm/signal.c