aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-02-22 00:02:57 +0000
committerUlrich Drepper <drepper@redhat.com>2003-02-22 00:02:57 +0000
commit9c03686dcc686aeedc6d6321b84553e140f5d27b (patch)
treee5b42d5d298a6eb8b6638243f036e7735bca2cb8
parent1c848253fce6eadd1f9227dab74b032c049226fb (diff)
downloadglibc-9c03686dcc686aeedc6d6321b84553e140f5d27b.zip
glibc-9c03686dcc686aeedc6d6321b84553e140f5d27b.tar.gz
glibc-9c03686dcc686aeedc6d6321b84553e140f5d27b.tar.bz2
Update.
* sysdeps/unix/sysv/linux/bits/signum.h (__SIGRTMAX): Define as _NSIG.
-rw-r--r--ChangeLog4
-rw-r--r--nptl/ChangeLog3
-rw-r--r--sysdeps/unix/sysv/linux/bits/signum.h4
3 files changed, 6 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 301dae9..0614f0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2003-02-21 Ulrich Drepper <drepper@redhat.com>
+ * sysdeps/unix/sysv/linux/bits/signum.h (__SIGRTMAX): Define as _NSIG.
+
* sysdeps/unix/sysv/linux/i386/getuid.c: Use INTERNAL_SYSCALL and do
not chechk for errors (unless testing for 32bit variant).
* sysdeps/unix/sysv/linux/i386/getgid.c: Likewise.
@@ -11,8 +13,6 @@
* sysdeps/x86_64/dl-machine.h (elf_machine_rela) <R_X86_64_PC32>:
Check for signed overflow, not unsigned.
-2003-02-21 Jakub Jelinek <jakub@redhat.com>
-
* sysdeps/sparc/sparc64/elf/configure.in: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/Makefile (sysdep-CFLAGS):
Use -fcall-used-g6, not -fcall-used-g7.
diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index a869dfd..4d19e42 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -6,11 +6,12 @@
Disallow sending SIGCANCEL.
* Makefile (tests): Remove tst-basic7. Add tst-kill1, tst-kill2,
- tst-kill3, tst-kill4, tst-kill5.
+ tst-kill3, tst-kill4, tst-kill5, tst-kill6.
* tst-kill1.c: New file.
* tst-kill2.c: New file.
* tst-kill3.c: New file.
* tst-kill5.c: New file.
+ * tst-kill6.c: New file.
* tst-basic7.c: Renamed to...
* tst-kill4.c: ...this.
diff --git a/sysdeps/unix/sysv/linux/bits/signum.h b/sysdeps/unix/sysv/linux/bits/signum.h
index 74259b4..a2fe52d 100644
--- a/sysdeps/unix/sysv/linux/bits/signum.h
+++ b/sysdeps/unix/sysv/linux/bits/signum.h
@@ -1,5 +1,5 @@
/* Signal number definitions. Linux version.
- Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1995,1996,1997,1998,1999,2003 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
@@ -75,6 +75,6 @@
/* These are the hard limits of the kernel. These values should not be
used directly at user level. */
#define __SIGRTMIN 32
-#define __SIGRTMAX (_NSIG - 1)
+#define __SIGRTMAX _NSIG
#endif /* <signal.h> included. */