diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-02 23:44:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-02 23:44:42 +0000 |
commit | a9cb398f7b2a6a8549ec33cdcc99f510566d3819 (patch) | |
tree | 03683c10060e9a77ed564004e04fa4e8c043db5d /linuxthreads_db/td_thr_getfpregs.c | |
parent | 03fc7ab6ed4bc2f71964a3d31ad578821256b6bc (diff) | |
download | glibc-a9cb398f7b2a6a8549ec33cdcc99f510566d3819.tar glibc-a9cb398f7b2a6a8549ec33cdcc99f510566d3819.tar.gz glibc-a9cb398f7b2a6a8549ec33cdcc99f510566d3819.tar.bz2 glibc-a9cb398f7b2a6a8549ec33cdcc99f510566d3819.zip |
Update.
1999-11-02 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/i386/sys/procfs.h: Include sys/ucontext.h
instead of duplicating definitions.
Diffstat (limited to 'linuxthreads_db/td_thr_getfpregs.c')
-rw-r--r-- | linuxthreads_db/td_thr_getfpregs.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/linuxthreads_db/td_thr_getfpregs.c b/linuxthreads_db/td_thr_getfpregs.c index 33bd95ee30..e6635d2644 100644 --- a/linuxthreads_db/td_thr_getfpregs.c +++ b/linuxthreads_db/td_thr_getfpregs.c @@ -28,12 +28,16 @@ td_thr_getfpregs (const td_thrhandle_t *th, prfpregset_t *regset) LOG (__FUNCTION__); - /* We have to get the PID for this thread. */ + /* We have to get the state and the PID for this thread. */ if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds, sizeof (struct _pthread_descr_struct)) != PS_OK) return TD_ERR; - if (ps_lgetfpregs (th->th_ta_p->ph, pds.p_pid, regset) != PS_OK) + /* If the thread already terminated we return all zeroes. */ + if (pds.p_terminated) + memset (regset, '\0', sizeof (*regset)); + /* Otherwise get the register content through the callback. */ + else if (ps_lgetfpregs (th->th_ta_p->ph, pds.p_pid, regset) != PS_OK) return TD_ERR; return TD_OK; |