Ensure stdout is flushed in the progs signal_hook()

This commit is contained in:
Bill Currie 2011-03-20 13:34:28 +09:00
parent a919e5f619
commit 025c39cc02

View file

@ -320,6 +320,7 @@ signal_hook (int sig, void *data)
} }
} }
PR_DumpState (pr); PR_DumpState (pr);
fflush (stdout);
return 0; return 0;
} }