Re: [PATCH 11/30] bsd-user/host/arm/host-signal.h: Implement host_signal_*

2022-01-16 Thread Warner Losh
On Thu, Jan 13, 2022 at 12:32 PM Peter Maydell wrote: > On Sun, 9 Jan 2022 at 16:33, Warner Losh wrote: > > > > Implement host_signal_pc, host_signal_set_pc and host_signal_write for > > arm. > > > > Signed-off-by: Kyle Evans > > Signed-off-by: Warner Losh > > > +static inline bool host_signal

Re: [PATCH 11/30] bsd-user/host/arm/host-signal.h: Implement host_signal_*

2022-01-13 Thread Peter Maydell
On Sun, 9 Jan 2022 at 16:33, Warner Losh wrote: > > Implement host_signal_pc, host_signal_set_pc and host_signal_write for > arm. > > Signed-off-by: Kyle Evans > Signed-off-by: Warner Losh > +static inline bool host_signal_write(siginfo_t *info, ucontext_t *uc) > +{ > +/* > + * In the F

[PATCH 11/30] bsd-user/host/arm/host-signal.h: Implement host_signal_*

2022-01-09 Thread Warner Losh
Implement host_signal_pc, host_signal_set_pc and host_signal_write for arm. Signed-off-by: Kyle Evans Signed-off-by: Warner Losh --- bsd-user/host/arm/host-signal.h | 39 + 1 file changed, 39 insertions(+) create mode 100644 bsd-user/host/arm/host-signal.h diff