* sigproc.cc (sigproc_terminate): More reversion of always-exit-from-sigthread

change.
This commit is contained in:
Christopher Faylor 2005-09-24 19:17:49 +00:00
parent e6e55ca6a2
commit 6f96c53642
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2005-09-24 Christopher Faylor <cgf@timesys.com>
* sigproc.cc (sigproc_terminate): More reversion of
always-exit-from-sigthread change.
2005-09-23 Christopher Faylor <cgf@timesys.com> 2005-09-23 Christopher Faylor <cgf@timesys.com>
* shared.cc (open_shared): Add crucial bit of debugging info. * shared.cc (open_shared): Add crucial bit of debugging info.

View File

@ -497,10 +497,7 @@ sigproc_terminate (exit_states es)
else else
{ {
sigproc_printf ("entering"); sigproc_printf ("entering");
siginfo_t si; sig_send (myself_nowait, __SIGEXIT);
memset (&si, 0, sizeof (si));
si.si_signo = __SIGEXIT;
sig_send (myself_nowait, si, &_my_tls);
proc_terminate (); // clean up process stuff proc_terminate (); // clean up process stuff
} }
} }