On 09/11/2015 02:39 PM, Vincent Guittot wrote:
[ ... ]
@@ -353,6 +354,10 @@ static void shutdown(int sig) { int i;
if(!continue_running)
return;
if you use a global variable in a signal handler you should use the type:
static volatile sig_atomic_t
good point.
Beside that, is the sequence working for you or you still see a crash ?
The sequence is working for me now.
Thanks for fixing the bug.
-- Daniel