Re: [PATCH 1/1] sandbox: don't set SA_NODEFER in signal handler

2021-07-21 Thread Simon Glass
Hi Heinrich, On Wed, 7 Jul 2021 at 11:37, Simon Glass wrote: > > Hi Heinrich, > > On Mon, 5 Jul 2021 at 11:43, Heinrich Schuchardt wrote: > > > > The sandbox can handle signals. Due to a damaged global data pointer > > additional exceptions in the signal handler may occur leading to an endless

Re: [PATCH 1/1] sandbox: don't set SA_NODEFER in signal handler

2021-07-17 Thread Simon Glass
Hi Heinrich, On Wed, 7 Jul 2021 at 11:37, Simon Glass wrote: > > Hi Heinrich, > > On Mon, 5 Jul 2021 at 11:43, Heinrich Schuchardt wrote: > > > > The sandbox can handle signals. Due to a damaged global data pointer > > additional exceptions in the signal handler may occur leading to an endless

Re: [PATCH 1/1] sandbox: don't set SA_NODEFER in signal handler

2021-07-07 Thread Simon Glass
Hi Heinrich, On Mon, 5 Jul 2021 at 11:43, Heinrich Schuchardt wrote: > > The sandbox can handle signals. Due to a damaged global data pointer > additional exceptions in the signal handler may occur leading to an endless > loop. In this case leave the handling of the secondary exception to the >

[PATCH 1/1] sandbox: don't set SA_NODEFER in signal handler

2021-07-05 Thread Heinrich Schuchardt
The sandbox can handle signals. Due to a damaged global data pointer additional exceptions in the signal handler may occur leading to an endless loop. In this case leave the handling of the secondary exception to the operating system. Signed-off-by: Heinrich Schuchardt --- arch/sandbox/cpu/os.c