* scripts/check-local-headers.sh: New file.
authorUlrich Drepper <drepper@redhat.com>
Thu, 24 Nov 2005 18:28:02 +0000 (18:28 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 24 Nov 2005 18:28:02 +0000 (18:28 +0000)
* Makefile (tests): Run check-local-headers.sh.

2005-11-23  Thorsten Kukuk  <kukuk@suse.de>

* include/sys/sendfile.h: New file.

2005-11-24  Andreas Schwab  <schwab@suse.de>

* time/sys/time.h: Remove nonnull attribute from futimesat.

ChangeLog
nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h
nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h

index 841a625..d4f5fa9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2005-11-24  Ulrich Drepper  <drepper@redhat.com>
+
+       * scripts/check-local-headers.sh: New file.
+       * Makefile (tests): Run check-local-headers.sh.
+
+2005-11-23  Thorsten Kukuk  <kukuk@suse.de>
+
+       * include/sys/sendfile.h: New file.
+
+2005-11-24  Andreas Schwab  <schwab@suse.de>
+
+       * time/sys/time.h: Remove nonnull attribute from futimesat.
+
 2005-11-22  Ulrich Drepper  <drepper@redhat.com>
 
        * nscd/connections.c (sendfileall): Define.
index c61769a..d30edd2 100644 (file)
@@ -1,3 +1,11 @@
+2005-11-24  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h
+       (__cleanup_fct_attribute): Use __regparm__ not regparm.
+
+       * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: When
+       compiling 32-bit code we must define __cleanup_fct_attribute.
+
 005-11-24  Jakub Jelinek  <jakub@redhat.com>
 
        [BZ #1920]
index 034d11e..ddb3574 100644 (file)
@@ -155,6 +155,6 @@ typedef union
 
 
 /* Extra attributes for the cleanup functions.  */
-#define __cleanup_fct_attribute __attribute__ ((regparm (1)))
+#define __cleanup_fct_attribute __attribute__ ((__regparm__ (1)))
 
 #endif /* bits/pthreadtypes.h */
index 92fb08c..7f1ace6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
 
@@ -192,4 +192,9 @@ typedef union
 #endif
 
 
+#if __WORDSIZE == 32
+/* Extra attributes for the cleanup functions.  */
+# define __cleanup_fct_attribute __attribute__ ((__regparm__ (1)))
+#endif
+
 #endif /* bits/pthreadtypes.h */