Re: [PATCH 10/30] bsd-user/signal.c: Implement signal_init()

2022-01-24 Thread Warner Losh
On Sun, Jan 23, 2022 at 6:38 PM Richard Henderson < richard.hender...@linaro.org> wrote: > On 1/10/22 3:19 AM, Warner Losh wrote: > > Initialize the signal state for the emulator. Setup a set of sane > > default signal handlers, mirroring the host's signals. For fatal signals > > (those that exit

Re: [PATCH 10/30] bsd-user/signal.c: Implement signal_init()

2022-01-23 Thread Richard Henderson
On 1/10/22 3:19 AM, Warner Losh wrote: Initialize the signal state for the emulator. Setup a set of sane default signal handlers, mirroring the host's signals. For fatal signals (those that exit by default), establish our own set of signal handlers. Stub out the actual signal handler we use for t

Re: [PATCH 10/30] bsd-user/signal.c: Implement signal_init()

2022-01-14 Thread Warner Losh
On Thu, Jan 13, 2022 at 12:28 PM Peter Maydell wrote: > On Sun, 9 Jan 2022 at 16:29, Warner Losh wrote: > > > > Initialize the signal state for the emulator. Setup a set of sane > > default signal handlers, mirroring the host's signals. For fatal signals > > (those that exit by default), establi

Re: [PATCH 10/30] bsd-user/signal.c: Implement signal_init()

2022-01-13 Thread Peter Maydell
On Sun, 9 Jan 2022 at 16:29, Warner Losh wrote: > > Initialize the signal state for the emulator. Setup a set of sane > default signal handlers, mirroring the host's signals. For fatal signals > (those that exit by default), establish our own set of signal > handlers. Stub out the actual signal ha

[PATCH 10/30] bsd-user/signal.c: Implement signal_init()

2022-01-09 Thread Warner Losh
Initialize the signal state for the emulator. Setup a set of sane default signal handlers, mirroring the host's signals. For fatal signals (those that exit by default), establish our own set of signal handlers. Stub out the actual signal handler we use for the moment. Signed-off-by: Stacey Son Si