diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-01-31 17:53:01 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-01-31 17:53:01 +0000 |
commit | ddeb09cb2efb93eab71d1e49129dab580270cb90 (patch) | |
tree | 2ef64eb7887728644658c7a70dac61a1d262881b /libpthread | |
parent | 7a83a9f1da8dd720071d56620748fbc73879c065 (diff) |
Restore it so we get gdb
[Thread 1026 (Missing) exited]
messages again, while leaving the __linuxthreads_death_event()
call disabled, as it still breaks gdb.
Diffstat (limited to 'libpthread')
-rw-r--r-- | libpthread/linuxthreads/join.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/join.c b/libpthread/linuxthreads/join.c index bce737dea..8d82d1fcb 100644 --- a/libpthread/linuxthreads/join.c +++ b/libpthread/linuxthreads/join.c @@ -56,12 +56,12 @@ PDEBUG("self=%p, pid=%d\n", self, self->p_pid); p_eventbuf.eventmask).event_bits[idx])) != 0) { -#if 0 /* Appears like DEATH event reporting is broken */ /* Yep, we have to signal the death. */ THREAD_SETMEM(self, p_eventbuf.eventnum, TD_DEATH); THREAD_SETMEM(self, p_eventbuf.eventdata, self); __pthread_last_event = self; +#if 0 /* Appears like DEATH event reporting is broken */ /* Now call the function to signal the event. */ __linuxthreads_death_event(); #endif |