diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-11 22:31:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-11 22:31:36 +0000 |
commit | 217eb19b6f28429aa02792764bfd7b9f51743be2 (patch) | |
tree | 8889fa7ed4cc9b561e2fc8372b604cbd55eb2402 /linuxthreads_db | |
parent | df08cc56eb0a050bd1d7cf569d78d4f9d2a20964 (diff) | |
download | glibc-217eb19b6f28429aa02792764bfd7b9f51743be2.tar glibc-217eb19b6f28429aa02792764bfd7b9f51743be2.tar.gz glibc-217eb19b6f28429aa02792764bfd7b9f51743be2.tar.bz2 glibc-217eb19b6f28429aa02792764bfd7b9f51743be2.zip |
Update.
1999-10-11 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/powerpc/Makefile [math] (libm-support): Remove t_sqrt.
* sysdeps/powerpc/e_sqrt.c: Moved to...
* sysdeps/powerpc/fpu/e_sqrt.c: ...here.
* sysdeps/powerpc/e_sqrtf.c: Moved to...
* sysdeps/powerpc/fpu/e_sqrtf.c: ...here.
* sysdeps/powerpc/submul_1.S: Adjust asm syntax.
* sysdeps/powerpc/sub_n.S: Likewise.
* sysdeps/powerpc/strlen.S: Likewise.
* sysdeps/powerpc/strcpy.S: Likewise.
* sysdeps/powerpc/strcmp.S: Likewise.
* sysdeps/powerpc/strchr.S: Likewise.
* sysdeps/powerpc/stpcpy.S: Likewise.
* sysdeps/powerpc/setjmp.S: Likewise.
* sysdeps/powerpc/rshift.S: Likewise.
* sysdeps/powerpc/ppc-mcount.S: Likewise.
* sysdeps/powerpc/mul_1.S: Likewise.
* sysdeps/powerpc/memset.S: Likewise.
* sysdeps/powerpc/lshift.S: Likewise.
* sysdeps/powerpc/dl-start.S: Likewise.
* sysdeps/powerpc/bzero.S: Likewise.
* sysdeps/powerpc/bsd-setjmp.S: Likewise.
* sysdeps/powerpc/bsd-_setjmp.S: Likewise.
* sysdeps/powerpc/addmul_1.S: Likewise.
* sysdeps/powerpc/add_n.S: Likewise.
* sysdeps/powerpc/__longjmp.S: Likewise.
* sysdeps/powerpc/elf/start.S: Likewise.
1999-10-11 Cristian Gafton <gafton@redhat.com>
* sysdeps/unix/sysv/linux/alpha/bits/sigaction.h: Declare
Diffstat (limited to 'linuxthreads_db')
-rw-r--r-- | linuxthreads_db/ChangeLog | 3 | ||||
-rw-r--r-- | linuxthreads_db/thread_db.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/linuxthreads_db/ChangeLog b/linuxthreads_db/ChangeLog index 76dbb17da8..220f021461 100644 --- a/linuxthreads_db/ChangeLog +++ b/linuxthreads_db/ChangeLog @@ -1,5 +1,7 @@ 1999-10-11 Ulrich Drepper <drepper@cygnus.com> + * thread_db.h: Fix comment for ti_type. + * td_thr_get_info.c: Initialize ti_type field. * td_ta_thr_iter.c: Also report the manager thread. @@ -20,7 +22,6 @@ * Makefile: New file. * proc_service.h: New file. - * shlib-versions: New file. * td_init.c: New file. * td_log.c: New file. * td_ta_delete.c: New file. diff --git a/linuxthreads_db/thread_db.h b/linuxthreads_db/thread_db.h index 310e2ae75a..b1b62211d5 100644 --- a/linuxthreads_db/thread_db.h +++ b/linuxthreads_db/thread_db.h @@ -266,7 +266,8 @@ typedef struct td_thrinfo int ti_ro_size; /* Unused. */ td_thr_state_e ti_state; /* Thread state. */ unsigned char ti_db_suspended; /* Nonzero if suspended by debugger. */ - td_thr_type_e ti_type; /* Unused. */ + td_thr_type_e ti_type; /* Type of the thread (system vs + user thread). */ intptr_t ti_pc; /* Unused. */ intptr_t ti_sp; /* Unused. */ short int ti_flags; /* Unused. */ |