about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/sysv4
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-07-10 20:43:48 +0000
committerUlrich Drepper <drepper@redhat.com>2002-07-10 20:43:48 +0000
commitd880edc43c82a7a9c9b50c3ad932a9bff35a7e39 (patch)
treeefa7d3bad7dfe39261848aa6ac8c33ab34342e13 /sysdeps/unix/sysv/sysv4
parentee33bfcc0787b5bb52cd3ff666e70e8c0a341aca (diff)
downloadglibc-d880edc43c82a7a9c9b50c3ad932a9bff35a7e39.tar.gz
glibc-d880edc43c82a7a9c9b50c3ad932a9bff35a7e39.tar.xz
glibc-d880edc43c82a7a9c9b50c3ad932a9bff35a7e39.zip
Update.
2002-07-10  Ulrich Drepper  <drepper@redhat.com>

	* wrapsyscall.c: Add __nanosleep alias.
	* Versions (GLIBC_2.2.6): Add __nanosleep.
Diffstat (limited to 'sysdeps/unix/sysv/sysv4')
-rw-r--r--sysdeps/unix/sysv/sysv4/bits/sigset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/sysv4/bits/sigset.h b/sysdeps/unix/sysv/sysv4/bits/sigset.h
index bf0cae2101..9093c72952 100644
--- a/sysdeps/unix/sysv/sysv4/bits/sigset.h
+++ b/sysdeps/unix/sysv/sysv4/bits/sigset.h
@@ -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))