diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-08-25 09:08:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-08-25 09:08:28 +0000 |
commit | 544f3cdfff81228c079df98367590d5bb05391f0 (patch) | |
tree | 504bb048d456f5357b744e08687a12a577a7bb57 | |
parent | 395412a0e862bba722a71de7a41e8325b567d09a (diff) | |
download | glibc-544f3cdfff81228c079df98367590d5bb05391f0.tar glibc-544f3cdfff81228c079df98367590d5bb05391f0.tar.gz glibc-544f3cdfff81228c079df98367590d5bb05391f0.tar.bz2 glibc-544f3cdfff81228c079df98367590d5bb05391f0.zip |
Update.
2003-08-18 Alfred M. Szmidt <ams@kemisten.nu>
* sysdeps/generic/bits/libc-lock.h (__libc_cleanup_pop): Redefine
and use __libc_cleanup_region_end instead.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | bits/libc-lock.h | 2 | ||||
-rw-r--r-- | linuxthreads_db/ChangeLog | 6 | ||||
-rw-r--r-- | localedata/ChangeLog | 9 | ||||
-rw-r--r-- | sysdeps/generic/bits/libc-lock.h | 2 |
5 files changed, 20 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2003-08-18 Alfred M. Szmidt <ams@kemisten.nu> + + * sysdeps/generic/bits/libc-lock.h (__libc_cleanup_pop): Redefine + and use __libc_cleanup_region_end instead. + 2003-08-25 Ulrich Drepper <drepper@redhat.com> * elf/ldconfig.c (search_dir): Revert patch of 2003-7-21. diff --git a/bits/libc-lock.h b/bits/libc-lock.h index d87bd9b03a..3f9c211e0a 100644 --- a/bits/libc-lock.h +++ b/bits/libc-lock.h @@ -118,7 +118,7 @@ (*__save_FCT)(__save_ARG); \ #define __libc_cleanup_push(fct, arg) __libc_cleanup_region_start (1, fct, arg) -#define __libc_cleanup_pop(execute) __libc_cleanup_end (execute) +#define __libc_cleanup_pop(execute) __libc_cleanup_region_end (execute) /* We need portable names for some of the functions. */ #define __libc_mutex_unlock diff --git a/linuxthreads_db/ChangeLog b/linuxthreads_db/ChangeLog index 02d0dc1c92..9da34c0ed8 100644 --- a/linuxthreads_db/ChangeLog +++ b/linuxthreads_db/ChangeLog @@ -1,3 +1,9 @@ +2003-08-18 Daniel Jacobowitz <drow@mvista.com> + + * td_thr_getfpregs.c (td_thr_getfpregs): Use the main thread if + the descriptor is uninitialized. + * td_thr_getgregs.c (td_thr_getgregs): Likewise. + 2003-03-15 Roland McGrath <roland@redhat.com> * thread_db.h (td_err_e): Add TD_NOTLS and TD_TLSDEFER. diff --git a/localedata/ChangeLog b/localedata/ChangeLog index ced228ba43..7eb2612fe8 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,7 +1,12 @@ +2003-08-25 Ulrich Drepper <drepper@redhat.com> + + * locales/an_ES: Fix locale header information. + Patch by Jordi Mallach <jordi@sindominio.net>. + 2003-08-14 Ulrich Drepper <drepper@redhat.com> - * localedata/charmaps/WINDOWS-31J: New file. - * localedata/charmaps/EUC-JP-MS: New file + * charmaps/WINDOWS-31J: New file. + * charmaps/EUC-JP-MS: New file Patch by MORIYAMA Masayuki <msyk@mtg.biglobe.ne.jp>. 2003-07-27 Andreas Jaeger <aj@suse.de> diff --git a/sysdeps/generic/bits/libc-lock.h b/sysdeps/generic/bits/libc-lock.h index d87bd9b03a..3f9c211e0a 100644 --- a/sysdeps/generic/bits/libc-lock.h +++ b/sysdeps/generic/bits/libc-lock.h @@ -118,7 +118,7 @@ (*__save_FCT)(__save_ARG); \ #define __libc_cleanup_push(fct, arg) __libc_cleanup_region_start (1, fct, arg) -#define __libc_cleanup_pop(execute) __libc_cleanup_end (execute) +#define __libc_cleanup_pop(execute) __libc_cleanup_region_end (execute) /* We need portable names for some of the functions. */ #define __libc_mutex_unlock |