mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 06:30:05 +00:00
Update.
2001-04-12 Ulrich Drepper <drepper@redhat.com> * sysdeps/ia64/Dist: Add elf/entry.h. * iconvdata/Makefile (distribute): Add TESTS2.
This commit is contained in:
parent
a08877d0e0
commit
c4103b3480
@ -1,3 +1,9 @@
|
|||||||
|
2001-04-12 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/ia64/Dist: Add elf/entry.h.
|
||||||
|
|
||||||
|
* iconvdata/Makefile (distribute): Add TESTS2.
|
||||||
|
|
||||||
2001-04-13 Jakub Jelinek <jakub@redhat.com>
|
2001-04-13 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_load_address):
|
* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_load_address):
|
||||||
|
@ -96,7 +96,7 @@ LDFLAGS-libISOIR165.so = -Wl,-soname,$(@F)
|
|||||||
distribute := gconv-modules extra-module.mk gap.awk gaptab.awk \
|
distribute := gconv-modules extra-module.mk gap.awk gaptab.awk \
|
||||||
gen-8bit.sh gen-8bit-gap.sh gen-8bit-gap-1.sh \
|
gen-8bit.sh gen-8bit-gap.sh gen-8bit-gap-1.sh \
|
||||||
TESTS $(filter-out testdata/CVS%, $(wildcard testdata/*)) \
|
TESTS $(filter-out testdata/CVS%, $(wildcard testdata/*)) \
|
||||||
run-iconv-test.sh tst-tables.sh tst-table.sh \
|
TESTS2 run-iconv-test.sh tst-tables.sh tst-table.sh \
|
||||||
tst-table-charmap.sh tst-table-from.c tst-table-to.c \
|
tst-table-charmap.sh tst-table-from.c tst-table-to.c \
|
||||||
EUC-JP.irreversible ISIRI-3342.irreversible SJIS.irreversible \
|
EUC-JP.irreversible ISIRI-3342.irreversible SJIS.irreversible \
|
||||||
EUC-KR.irreversible BIG5HKSCS.irreversible BIG5.irreversible \
|
EUC-KR.irreversible BIG5HKSCS.irreversible BIG5.irreversible \
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2001-04-12 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* td_ta_map_id2thr.c: If thread terminated return TD_NOTHR.
|
||||||
|
* td_thr_validate.c: Likewise.
|
||||||
|
|
||||||
2001-04-04 Ulrich Drepper <drepper@redhat.com>
|
2001-04-04 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* td_thr_getfpregs.c: If p_pid is zero use ps_getpid().
|
* td_thr_getfpregs.c: If p_pid is zero use ps_getpid().
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Map thread ID to thread handle.
|
/* Map thread ID to thread handle.
|
||||||
Copyright (C) 1999 Free Software Foundation, Inc.
|
Copyright (C) 1999, 2001 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
|
||||||
|
|
||||||
@ -55,6 +55,9 @@ td_ta_map_id2thr (const td_thragent_t *ta, pthread_t pt, td_thrhandle_t *th)
|
|||||||
if (pds.p_tid != pt)
|
if (pds.p_tid != pt)
|
||||||
return TD_BADTH;
|
return TD_BADTH;
|
||||||
|
|
||||||
|
if (pds.p_terminated != 0)
|
||||||
|
return TD_NOTHR;
|
||||||
|
|
||||||
/* Create the `td_thrhandle_t' object. */
|
/* Create the `td_thrhandle_t' object. */
|
||||||
th->th_ta_p = (td_thragent_t *) ta;
|
th->th_ta_p = (td_thragent_t *) ta;
|
||||||
th->th_unique = phc.h_descr;
|
th->th_unique = phc.h_descr;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Validate a thread handle.
|
/* Validate a thread handle.
|
||||||
Copyright (C) 1999 Free Software Foundation, Inc.
|
Copyright (C) 1999, 2001 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
|
||||||
|
|
||||||
@ -41,9 +41,15 @@ td_thr_validate (const td_thrhandle_t *th)
|
|||||||
|
|
||||||
if (phc.h_descr != NULL && phc.h_descr == th->th_unique)
|
if (phc.h_descr != NULL && phc.h_descr == th->th_unique)
|
||||||
{
|
{
|
||||||
|
struct _pthread_descr_struct pds;
|
||||||
|
|
||||||
|
if (ps_pdread (th->th_ta_p->ph, phc.h_descr, &pds,
|
||||||
|
th->th_ta_p->sizeof_descr) != PS_OK)
|
||||||
|
return TD_ERR; /* XXX Other error value? */
|
||||||
|
|
||||||
/* XXX There should be another test using the TID but this is
|
/* XXX There should be another test using the TID but this is
|
||||||
currently not available. */
|
currently not available. */
|
||||||
return TD_OK;
|
return pds.p_terminated != 0 ? TD_NOTHR : TD_OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
_mcount.S
|
_mcount.S
|
||||||
dl-symaddr.c
|
dl-symaddr.c
|
||||||
dl-fptr.c
|
dl-fptr.c
|
||||||
|
elf/entry.h
|
||||||
ieee754.h
|
ieee754.h
|
||||||
softpipe.h
|
softpipe.h
|
||||||
|
Loading…
Reference in New Issue
Block a user