* sysdeps/generic/sigset-cvt-mask.h (sigset_set_old_mask): Declutter
authorRoland McGrath <roland@gnu.org>
Thu, 5 Sep 2002 18:53:40 +0000 (18:53 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 5 Sep 2002 18:53:40 +0000 (18:53 +0000)
syntax.

        * elf/readlib.c (process_file): Conditionalize check for QMAGIC.

ChangeLog
linuxthreads/ChangeLog
sysdeps/generic/sigset-cvt-mask.h

index e924638..ede97d4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,13 +1,15 @@
 2002-09-04  Bruno Haible  <bruno@clisp.org>
 
-        * elf/readlib.c (process_file): Conditionalize check for QMAGIC.
-
        * sysdeps/unix/sysv/linux/sigset-cvt-mask.h (sigset_set_old_mask,
        sigset_get_old_mask): Turn into inline functions.
        * sysdeps/unix/sysv/aix/sigset-cvt-mask.h (sigset_set_old_mask,
        sigset_get_old_mask): Likewise.
        * sysdeps/unix/sysv/sysv4/sigset-cvt-mask.h (sigset_set_old_mask,
        sigset_get_old_mask): Likewise.
+       * sysdeps/generic/sigset-cvt-mask.h (sigset_set_old_mask): Declutter
+       syntax.
+
+        * elf/readlib.c (process_file): Conditionalize check for QMAGIC.
 
        * sysdeps/generic/_strerror.c (_sys_errlist, _sys_nerr): Remove
        default definitions.
index 08084a4..6d4850b 100644 (file)
@@ -1,9 +1,21 @@
+2002-09-04  Bruno Haible  <bruno@clisp.org>
+
+       * wrapsyscall.c (PROMOTE_INTEGRAL_TYPE): New macro.
+       (open, open64): Change va_arg argument type to the integral type to
+       which mode_t promotes.
+
+       * sysdeps/pthread/tst-timer.c (main): Don't assume anything about
+       the structure of 'struct sigevent'.
+
+       * errno.c (__errno_location, __h_errno_location, __res_state):
+       Use prototype function definitions.
+
 2002-07-29  Steven Munroe  <sjmunroe@us.ibm.com>
 
        * shlib-versions: Set libpthread version to 2.3 for powerpc64.
        * sysdeps/powerpc/pt-machine.h: moved to...
        * sysdeps/powerpc/powerpc32/pt-machine.h: ...here
-       * sysdeps/powerpc/powerpc64/pt-machine.h: New file. 
+       * sysdeps/powerpc/powerpc64/pt-machine.h: New file.
 
 2002-09-02  Roland McGrath  <roland@redhat.com>
 
index c9a0434..95473f5 100644 (file)
@@ -27,7 +27,7 @@ static inline int __attribute__ ((unused))
 sigset_set_old_mask (sigset_t *set, int mask)
 {
   if (sizeof (__sigset_t) == sizeof (unsigned int))
-    *set = (unsigned int) (mask);
+    *set = (unsigned int) mask;
   else
     {
       register unsigned int __sig;