* exceptions.cc (signal_exit): Add a FIXME comment.

This commit is contained in:
Christopher Faylor
2013-07-19 23:13:58 +00:00
parent 3a4dab46c3
commit fb6cf945f9
3 changed files with 10 additions and 0 deletions

View File

@ -1219,6 +1219,8 @@ signal_exit (int sig, siginfo_t *si)
sig |= 0x80; /* Flag that we've "dumped core" */
if (try_to_debug ())
break;
/* FIXME: We're still dumping core even if !(sig & 0x80). Need to
investigate if the else clause can just be nuked. */
if (si->si_code != SI_USER && si->si_cyg)
((cygwin_exception *) si->si_cyg)->dumpstack ();
else