summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-08-24 05:07:37 +0000
committerRoland McGrath <roland@gnu.org>2001-08-24 05:07:37 +0000
commit37d8d3629e6851c933808c0dbf9b7368f14ce920 (patch)
tree817439e61ca498ee8bc3c395879edabefcc9ebc6
parentedb6388469813ba6f4df742ae6dd55466a28976c (diff)
* rt/tst-aio4.c [! SIGRTMIN] (SIGRTMIN, SIGRTMAX): Define as -1.
-rw-r--r--ChangeLog2
-rw-r--r--rt/tst-aio4.c4
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 37b5c88b6d..acd3afc10f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2001-08-23 Roland McGrath <roland@frob.com>
+ * rt/tst-aio4.c [! SIGRTMIN] (SIGRTMIN, SIGRTMAX): Define as -1.
+
* sysdeps/mach/hurd/bits/libc-lock.h: New file, initially copied from
sysdeps/mach version. Implement counting ("recursive") mutexes
on top of cthreads mutexes.
diff --git a/rt/tst-aio4.c b/rt/tst-aio4.c
index 05b1a19e5b..95efdcf7d2 100644
--- a/rt/tst-aio4.c
+++ b/rt/tst-aio4.c
@@ -55,6 +55,10 @@ wait_flag (void)
return 0;
}
+#ifndef SIGRTMIN
+# define SIGRTMIN -1
+# define SIGRTMAX -1
+#endif
static int
do_test (int argc, char *argv[])