(__NSSBITS): Correct value.
authorUlrich Drepper <drepper@redhat.com>
Wed, 10 Jul 2002 20:24:32 +0000 (20:24 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 10 Jul 2002 20:24:32 +0000 (20:24 +0000)
sysdeps/unix/sysv/sysv4/bits/sigset.h

index bf0cae2..9093c72 100644 (file)
@@ -1,5 +1,5 @@
 /* __sig_atomic_t, __sigset_t, and related definitions.  SVR4 version.
-   Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
+   Copyright (C) 1994-1996, 2002 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
@@ -44,7 +44,7 @@ typedef struct
 
 
 /* It's easier to assume 8-bit bytes than to get CHAR_BIT.  */
-#define        __NSSBITS       (sizeof (__sigset_t) * 8)
+#define        __NSSBITS       (sizeof (unsigned long int) * 8)
 #define        __SSELT(s)      ((s) / __NSSBITS)
 #define        __SSMASK(s)     (1 << ((s) % __NSSBITS))