This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

linuxthread/linuxthread_db fix


Looks like TD_REAP and TD_DEATH are a bit mixed up (probably due to
copy & paste).

Mark


2000-09-03  Mark Kettenis  <kettenis@gnu.org>

	* manager.c (pthread_exited): Correctly report event as TD_REAP
	instead of TD_DEATH.  Fix comments.


Index: linuxthreads/manager.c
===================================================================
RCS file: /cvs/glibc/libc/linuxthreads/manager.c,v
retrieving revision 1.57
diff -u -p -r1.57 manager.c
--- linuxthreads/manager.c	2000/08/30 07:37:18	1.57
+++ linuxthreads/manager.c	2000/09/03 13:31:51
@@ -745,7 +745,7 @@ static void pthread_exited(pid_t pid)
 		       | th->p_eventbuf.eventmask.event_bits[idx])) != 0)
 	    {
 	      /* Yep, we have to signal the death.  */
-	      th->p_eventbuf.eventnum = TD_DEATH;
+	      th->p_eventbuf.eventnum = TD_REAP;
 	      th->p_eventbuf.eventdata = th;
 	      __pthread_last_event = th;
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]