+2002-07-10 Ulrich Drepper <drepper@redhat.com>
+
+ * wrapsyscall.c: Add __nanosleep alias.
+ * Versions (GLIBC_2.2.6): Add __nanosleep.
+
2002-06-19 Steven Munroe <sjmunroe@vnet.ibm.com>
* Examples/ex9.c (main): Use list of children and join them.
CANCELABLE_SYSCALL (int, nanosleep, (const struct timespec *requested_time,
struct timespec *remaining),
(requested_time, remaining))
+strong_alias (nanosleep, __nanosleep)
/* open(2). */
/* __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
/* 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))