diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-12 23:31:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-12 23:31:39 +0000 |
commit | 932ba4ee943077ae89f96518c761c5cb79db460f (patch) | |
tree | 6841cc994ab3b6c58b43fe71f8063fbcf5fa5155 | |
parent | f7a8a904b6ac4883f11d93a267dae6ebeda441b8 (diff) | |
download | glibc-932ba4ee943077ae89f96518c761c5cb79db460f.tar.gz glibc-932ba4ee943077ae89f96518c761c5cb79db460f.tar.xz glibc-932ba4ee943077ae89f96518c761c5cb79db460f.zip |
Update.
* charmaps/ISO-8859-7: Fix 0xa1 mapping.
-rw-r--r-- | linuxthreads_db/ChangeLog | 3 | ||||
-rw-r--r-- | linuxthreads_db/td_ta_thr_iter.c | 2 | ||||
-rw-r--r-- | localedata/ChangeLog | 2 | ||||
-rw-r--r-- | localedata/charmaps/ISO-8859-7 | 2 |
4 files changed, 7 insertions, 2 deletions
diff --git a/linuxthreads_db/ChangeLog b/linuxthreads_db/ChangeLog index 32b06d0d47..0ad9fd12f9 100644 --- a/linuxthreads_db/ChangeLog +++ b/linuxthreads_db/ChangeLog @@ -1,5 +1,8 @@ 1999-11-12 Ulrich Drepper <drepper@cygnus.com> + * td_ta_thr_iter.c: Start copying list of descriptors from right + position in target process. + * td_ta_thr_iter.c: Fix loop starting point over all but main and manager thread. diff --git a/linuxthreads_db/td_ta_thr_iter.c b/linuxthreads_db/td_ta_thr_iter.c index 5b316516d1..b5694119a4 100644 --- a/linuxthreads_db/td_ta_thr_iter.c +++ b/linuxthreads_db/td_ta_thr_iter.c @@ -112,7 +112,7 @@ td_ta_thr_iter (const td_thragent_t *ta, td_thr_iter_f *callback, return result; /* Read all the descriptors. */ - if (ps_pdread (ta->ph, ta->handles, &phc[2], + if (ps_pdread (ta->ph, ta->handles + 2, &phc[2], (sizeof (struct pthread_handle_struct) * (pthread_threads_max - 2))) != PS_OK) return TD_ERR; /* XXX Other error value? */ diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 1dfec1aeb8..ab2eab4c40 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,5 +1,7 @@ 1999-11-12 Ulrich Drepper <drepper@cygnus.com> + * charmaps/ISO-8859-7: Fix 0xa1 mapping. + * charmaps/ISO-8859-13: Fix a few entries. Patch by Marius Gedminas <mgedmin@takas.lt>. diff --git a/localedata/charmaps/ISO-8859-7 b/localedata/charmaps/ISO-8859-7 index 74bc56dc7e..e602ec6983 100644 --- a/localedata/charmaps/ISO-8859-7 +++ b/localedata/charmaps/ISO-8859-7 @@ -174,7 +174,7 @@ CHARMAP <PM> /x9E <U009E> PRIVACY MESSAGE (PM) <AC> /x9F <U009F> APPLICATION PROGRAM COMMAND (APC) <NS> /xA0 <U00A0> NO-BREAK SPACE -<9'> /xA1 <U201B> SINGLE HIGH-REVERSED-9 QUOTATION MARK +<'6> /xA1 <U2018> LEFT SINGLE QUOTATION MARK <'9> /xA2 <U2019> RIGHT SINGLE QUOTATION MARK <Pd> /xA3 <U00A3> POUND SIGN <BB> /xA6 <U00A6> BROKEN BAR |