Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
1999-11-08  Ulrich Drepper  <drepper@cygnus.com>

	* pthread.c (__pthread_initialize_manager): Initialize
	__pthread_manager_thread.p_tid.
  • Loading branch information
Ulrich Drepper committed Nov 9, 1999
1 parent 727211c commit 178a145
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions linuxthreads/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1999-11-08 Ulrich Drepper <drepper@cygnus.com>

* pthread.c (__pthread_initialize_manager): Initialize
__pthread_manager_thread.p_tid.

1999-11-02 Ulrich Drepper <drepper@cygnus.com>

* internals.h: Declare __pthread_last_event.
Expand Down
1 change: 1 addition & 0 deletions linuxthreads/pthread.c
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,7 @@ int __pthread_initialize_manager(void)
}
__pthread_manager_request = manager_pipe[1]; /* writing end */
__pthread_manager_reader = manager_pipe[0]; /* reading end */
__pthread_manager_thread.p_tid = 2* PTHREAD_THREADS_MAX + 1;
__pthread_manager_thread.p_pid = pid;
/* Make gdb aware of new thread manager */
if (__pthread_threads_debug && __pthread_sig_debug > 0)
Expand Down
6 changes: 6 additions & 0 deletions linuxthreads_db/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1999-11-08 Ulrich Drepper <drepper@cygnus.com>

* td_thr_get_info.c: Make sure ti_lid is never zero.

* proc_service.h: Add ps_getpid prototype.

1999-11-03 Ulrich Drepper <drepper@cygnus.com>

* thread_dbP.h (ta_ok): New function.
Expand Down
2 changes: 2 additions & 0 deletions linuxthreads_db/proc_service.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,5 @@ extern ps_err_e ps_lgetfpregs(struct ps_prochandle *,
lwpid_t, prfpregset_t *);
extern ps_err_e ps_lsetfpregs(struct ps_prochandle *,
lwpid_t, const prfpregset_t *);

extern pid_t ps_getpid (struct ps_prochandle *);
2 changes: 1 addition & 1 deletion linuxthreads_db/td_thr_get_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ td_thr_get_info (const td_thrhandle_t *th, td_thrinfo_t *infop)
}

/* Initialization which are the same in both cases. */
infop->ti_lid = pds.p_pid;
infop->ti_lid = pds.p_pid ?: ps_getpid (th->th_ta_p->ph);
infop->ti_ta_p = th->th_ta_p;
infop->ti_startfunc = pds.p_start_args.start_routine;
memcpy (&infop->ti_events, &pds.p_eventbuf.eventmask,
Expand Down

0 comments on commit 178a145

Please sign in to comment.