summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-07-18 04:17:21 +0000
committerRoland McGrath <roland@gnu.org>2005-07-18 04:17:21 +0000
commit281d9629aeb7482f0048a39872bf7c91dd1045d6 (patch)
treeeb7448fd432883585abc9f25ee724168d06c5b3a
parente1cbe0a0ec0817c0cb916e73fc93b6b048bcdb2a (diff)
.
-rw-r--r--ChangeLog111
-rw-r--r--nptl/ChangeLog31
2 files changed, 135 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 094c36fa52..d2d8ddd327 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -17,6 +17,27 @@
(get_mapping): Make sure BUF is aligned correctly.
(get_mapping): Use munmap on correct pointer.
+2005-07-12 Jakub Jelinek <jakub@redhat.com>
+
+ [BZ #1106]
+ * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c: Include not-cancel.h.
+ (has_cpuclock): Use open_not_cancel_2 instead of open, read_not_cancel
+ instead of read and close_not_cancel_no_status instead of close.
+
+ [BZ #1106]
+ * sysdeps/s390/s390-64/bcopy.S (__bcopy): Use
+ HIDDEN_BUILTIN_JUMPTARGET to jump to memmove.
+
+2005-07-05 Thorsten Kukuk <kukuk@suse.de>
+
+ [BZ #1111]
+ * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Check if NSS
+ module provides getgrgid_r.
+ (getgrnam_plusgroup): Preserve original return value.
+ * nis/nss_compat/compat-pwd.c (getpwnam_plususer): Preserve
+ original return value.
+ * nis/nss_compat/compat-spwd.c (getspnam_plususer): Likewise.
+
2005-07-05 Ulrich Drepper <drepper@redhat.com>
[BZ #1101]
@@ -24,6 +45,17 @@
MB_CUR_MAX.
(build_wcs_upper_buffer): Likewise.
+2005-06-16 Jakub Jelinek <jakub@redhat.com>
+
+ [BZ #1016]
+ * sysdeps/ia64/strlen.S (strlen): Change l2 into a local label.
+
+2005-06-23 Thorsten Kukuk <kukuk@suse.de>
+
+ [BZ #1109]
+ * nscd/nscd_stat.c (receive_print_stats): Replace YESSTR/NOSTR
+ with own translation.
+
2005-06-25 Jakub Jelinek <jakub@redhat.com>
[BZ #1097]
@@ -39,6 +71,31 @@
_LINUX_QUOTA_VERSION >= 2.
(_LINUX_QUOTA_VERSION): Define if not yet defined.
+2005-06-17 Ulrich Drepper <drepper@redhat.com>
+
+ [BZ #1106]
+ * time/mktime.c: Always include <string.h> for prototype of
+ implicitly used memcpy.
+
+ [BZ #1104]
+ * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c
+ (truncate64): Use __truncate, not truncate.
+ (__have_no_truncate64): Renamed from have_no_truncate64.
+ * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c
+ (__have_no_truncate64): Renamed from have_no_truncate64.
+
+2005-06-17 Ulrich Drepper <drepper@redhat.com>
+
+ [BZ #1106]
+ * sysdeps/posix/sigignore.c: Include <string.h> to tell the compiler
+ to use __GI_memset.
+ * sysdeps/posix/signal.c: Likewise.
+ * sysdeps/posix/sigset.c: Likewise.
+ * sysdeps/posix/sysv_signal.c: Likewise.
+ * sysdeps/unix/sysv/linux/sleep.c: Likewise.
+ * sysdeps/unix/sysv/linux/sysctl.c: Likewise.
+ * sysdeps/unix/sysv/linux/system.c: Likewise.
+
2005-06-15 Jakub Jelinek <jakub@redhat.com>
[BZ #1088]
@@ -165,6 +222,14 @@
[BZ #877]
* posix/unistd.h: Remove __nonnull from acct decl.
+2005-04-26 Ulrich Drepper <drepper@redhat.com>
+
+ [BZ #1105]
+ * time/strptime_l.c (__strptime_internal): Handle 'z' to set
+ tm_gmtoff.
+ * time/Makefile (tests): Add tst-strptime2.
+ * time/tst-strptime2.c: New file.
+
2005-04-26 Jakub Jelinek <jakub@redhat.com>
[BZ #1081]
@@ -179,6 +244,18 @@
* elf/unload6mod2.c: New file.
* elf/unload6mod3.c: New file.
+2005-04-26 Ulrich Drepper <drepper@redhat.com>
+
+ [BZ #1110]
+ * stdio-common/vfscanf.c: Correctly account for characters of
+ decimal points right after +-.
+
+2005-04-24 Ulrich Drepper <drepper@redhat.com>
+
+ [BZ #1110]
+ * stdio-common/vfscanf.c: Fix parsing of decimal point after +-.
+ Patch by Hamed Malek <hamed@bamdad.org>.
+
2005-04-14 Roland McGrath <roland@redhat.com>
[BZ #253]
@@ -237,12 +314,33 @@
dynamically sized array.
(build_wcs_upper_buffer): Likewise.
+2005-02-22 Jakub Jelinek <jakub@redhat.com>
+
+ [BZ #1095]
+ * malloc/Makefile (CFLAGS-mcheck-init.c): Add.
+ * sunrpc/Makefile: Add $(PIC-ccflag) to CFLAGS-x* for
+ librpcsvc.a objects.
+
+2005-02-21 Ulrich Drepper <drepper@redhat.com>
+
+ [BZ #1107]
+ * iconvdata/ibm930.h: Correct Yen mapping.
+ * iconvdata/ibm939.h: Likewise.
+ * iconvdata/testdata/IBM930..UTF8: Adjust test data.
+ * iconvdata/testdata/IBM939..UTF8: Likewise.
+ Patch by Jiro Sekiba <SEKIBA@jp.ibm.com>.
+
2005-02-11 Jakub Jelinek <jakub@redhat.com>
[BZ #1100]
* debug/chk_fail.c (__chk_fail): Add a while (1) loop around
__libc_message to kill GCC warning about noreturn function returning.
+2005-02-07 Ulrich Drepper <drepper@redhat.com>
+
+ * sysdeps/unix/sysv/linux/dl-execstack.c: Include sysdep.h.
+ (_dl_make_stack_executable): Make sure registers are set correctly.
+
2005-01-30 Ulrich Drepper <drepper@redhat.com>
[BZ #1103]
@@ -254,6 +352,12 @@
[BZ #1100]
* debug/chk_fail.c (__chk_fail): Print program name in final message.
+2005-01-14 GOTO Masanori <gotom@debian.or.jp>
+
+ [BZ #1108]
+ * sunrpc/rpc_main.c (s_output): Generate #include <rpc/pmap_clnt.h>
+ irrespective of Cflag.
+
2005-01-11 Thorsten Kukuk <kukuk@suse.de>
[BZ #1099]
@@ -694,13 +798,6 @@
* posix/execvp.c (execvp): Fix invalid free.
-2005-02-22 Jakub Jelinek <jakub@redhat.com>
-
- [BZ #1095]
- * malloc/Makefile (CFLAGS-mcheck-init.c): Add.
- * sunrpc/Makefile: Add $(PIC-ccflag) to CFLAGS-x* for
- librpcsvc.a objects.
-
2005-02-21 Alan Modra <amodra@bigpond.net.au>
[BZ #719]
diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index 703b68a5c9..4f586eebaf 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -1,3 +1,34 @@
+2005-07-11 Jakub Jelinek <jakub@redhat.com>
+
+ [BZ #1102]
+ * sysdeps/pthread/pthread.h (PTHREAD_MUTEX_INITIALIZER,
+ PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP,
+ PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP,
+ PTHREAD_MUTEX_ADAPTIVE_NP, PTHREAD_RWLOCK_INITIALIZER,
+ PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP,
+ PTHREAD_COND_INITIALIZER): Supply zeros for all fields
+ in the structure.
+ * Makefile (tests): Add tst-initializers1.
+ (CFLAGS-tst-initializers1.c): Set.
+ * tst-initializers1.c: New test.
+
+2005-05-03 Ulrich Drepper <drepper@redhat.com>
+
+ [BZ #915]
+ * sysdeps/pthread/pthread.h: Avoid empty initializers.
+
+2005-04-27 Ulrich Drepper <drepper@redhat.com>
+
+ * tst-cancel17.c (do_test): Add arbitrary factor to make sure
+ aio_write blocks.
+
+2005-04-05 Jakub Jelinek <jakub@redhat.com>
+
+ [BZ #1102]
+ * sysdeps/pthread/pthread.h (__pthread_cleanup_routine): Use
+ __inline instead of inline.
+ * sysdeps/pthread/bits/libc-lock.h (__libc_cleanup_routine): Likewise.
+
2005-02-25 Roland McGrath <roland@redhat.com>
* alloca_cutoff.c: Correct license text.