Re: [PATCH v2 01/30] bsd-user: Add stubs for new signal routines

2021-11-02 Thread Warner Losh
On Tue, Nov 2, 2021 at 5:37 PM Richard Henderson < richard.hender...@linaro.org> wrote: > On 11/2/21 6:52 PM, Warner Losh wrote: > > Until the signal support is merged from the bsd-user fork, we need stubs > > for cpu_loop_exit_sigsegv and cpu_loop_exit_sigbus to link. These call > > abort after l

Re: [PATCH v2 01/30] bsd-user: Add stubs for new signal routines

2021-11-02 Thread Richard Henderson
On 11/2/21 6:52 PM, Warner Losh wrote: Until the signal support is merged from the bsd-user fork, we need stubs for cpu_loop_exit_sigsegv and cpu_loop_exit_sigbus to link. These call abort after logging a message. Since singals aren't supported here yet, this is sufficient. Signed-off-by: Warner

[PATCH v2 01/30] bsd-user: Add stubs for new signal routines

2021-11-02 Thread Warner Losh
Until the signal support is merged from the bsd-user fork, we need stubs for cpu_loop_exit_sigsegv and cpu_loop_exit_sigbus to link. These call abort after logging a message. Since singals aren't supported here yet, this is sufficient. Signed-off-by: Warner Losh --- bsd-user/signal.c | 21 ++