Re: [PATCH xserver 3/6] os: Make OsSignalHandler ask for core dumps for signo != SIGQUIT

2017-12-13 Thread Olivier Fourdan
On Mon, Nov 20, 2017 at 9:43 PM, Adam Jackson wrote: > SIGQUIT is a normal termination request, but any other signal we handle > here wants a core. This has the effect of making FatalError's call to > AbortServer trigger the > > if (CoreDump) > OsAbort(); > > path.

[PATCH xserver 3/6] os: Make OsSignalHandler ask for core dumps for signo != SIGQUIT

2017-11-20 Thread Adam Jackson
SIGQUIT is a normal termination request, but any other signal we handle here wants a core. This has the effect of making FatalError's call to AbortServer trigger the if (CoreDump) OsAbort(); path. This will allow us to remove some DDX code that has the same net effect.