Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 17 Feb 1998 16:14:44 +0000 (16:14 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 17 Feb 1998 16:14:44 +0000 (16:14 +0000)
1998-02-17  Ulrich Drepper  <drepper@cygnus.com>

* sysdeps/generic/bits/select.h (__FD_ISSET): Compare result with
0 to get always an int.

Make compatible with older kernels.  Patch by Richard Henderson.

ChangeLog
bits/select.h
sysdeps/generic/bits/select.h

index 26002be..805219a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1998-02-17  Ulrich Drepper  <drepper@cygnus.com>
+
+       * sysdeps/generic/bits/select.h (__FD_ISSET): Compare result with
+       0 to get always an int.
+
 1998-02-17  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
 
        * math/libm.map: Move all symbols that are new in glibc 2.1 to
@@ -19,7 +24,7 @@
 1998-02-03  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
 
        * sysdeps/unix/sysv/linux/alpha/rt_sigaction.S (rt_sigreturn):
-       Make compatible with older kernels. Patch by Richard Henderson.
+       Make compatible with older kernels.  Patch by Richard Henderson.
 
 1998-02-17 15:10  Ulrich Drepper  <drepper@cygnus.com>
 
index 0da0acb..98f1002 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -30,6 +30,6 @@
     for (__i = 0; __i < sizeof (__fd_set) / sizeof (__fd_mask); ++__i)       \
       __arr->fds_bits[__i] = '\0';                                           \
   } while (0)
-#define __FD_SET(d, set)       ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
-#define __FD_CLR(d, set)       ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
-#define __FD_ISSET(d, set)     ((set)->fds_bits[__FDELT(d)] & __FDMASK(d))
+#define __FD_SET(d, set)     ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
+#define __FD_CLR(d, set)     ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
+#define __FD_ISSET(d, set)   (((set)->fds_bits[__FDELT(d)] & __FDMASK(d)) != 0)
index 0da0acb..98f1002 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -30,6 +30,6 @@
     for (__i = 0; __i < sizeof (__fd_set) / sizeof (__fd_mask); ++__i)       \
       __arr->fds_bits[__i] = '\0';                                           \
   } while (0)
-#define __FD_SET(d, set)       ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
-#define __FD_CLR(d, set)       ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
-#define __FD_ISSET(d, set)     ((set)->fds_bits[__FDELT(d)] & __FDMASK(d))
+#define __FD_SET(d, set)     ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
+#define __FD_CLR(d, set)     ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
+#define __FD_ISSET(d, set)   (((set)->fds_bits[__FDELT(d)] & __FDMASK(d)) != 0)