diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-02-08 10:13:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-02-08 10:13:00 +0000 |
commit | c56661df71dc43ad5b5343bdea02ef12032950f7 (patch) | |
tree | 68e8ab89ac92e43224087e0213103d335f2407c0 /sysdeps/unix | |
parent | 82d0c09944e0fa5d22700337b9a8e1c7ae17ea55 (diff) | |
download | glibc-c56661df71dc43ad5b5343bdea02ef12032950f7.tar glibc-c56661df71dc43ad5b5343bdea02ef12032950f7.tar.gz glibc-c56661df71dc43ad5b5343bdea02ef12032950f7.tar.bz2 glibc-c56661df71dc43ad5b5343bdea02ef12032950f7.zip |
Update.
* sysdeps/unix/sysv/linux/alpha/bits/signum.h: Add missing RT
signal definitions.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/bits/signum.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/signum.h b/sysdeps/unix/sysv/linux/alpha/bits/signum.h index 44c3374e6c..0d5452dc30 100644 --- a/sysdeps/unix/sysv/linux/alpha/bits/signum.h +++ b/sysdeps/unix/sysv/linux/alpha/bits/signum.h @@ -1,5 +1,5 @@ /* Signal number definitions. Linux/Alpha version. - Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999 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 @@ -71,4 +71,12 @@ #define _NSIG 64 /* Biggest signal number + 1. */ +#define SIGRTMIN (__libc_current_sigrtmin ()) +#define SIGRTMAX (__libc_current_sigrtmax ()) + +/* 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) + #endif /* <signal.h> included. */ |