From: Roland McGrath Date: Fri, 24 Aug 2001 05:07:37 +0000 (+0000) Subject: * rt/tst-aio4.c [! SIGRTMIN] (SIGRTMIN, SIGRTMAX): Define as -1. X-Git-Tag: cvs/glibc-2-2-5~378 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37d8d3629e6851c933808c0dbf9b7368f14ce920;p=thirdparty%2Fglibc.git * rt/tst-aio4.c [! SIGRTMIN] (SIGRTMIN, SIGRTMAX): Define as -1. --- diff --git a/ChangeLog b/ChangeLog index 37b5c88b6d1..acd3afc10f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2001-08-23 Roland McGrath + * 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 05b1a19e5b6..95efdcf7d20 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[])