blob: e44ffdaf5a2c3d0a7f0796af4645739506684846 [file] [log] [blame]
Brad Bishop66783732017-12-04 02:22:08 -05001From 803bde12d32d16eefeae03422a0ac682e0601c43 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 20 Mar 2017 12:13:30 -0700
4Subject: [PATCH 2/2] Define WAIT_ANY if not provided by system
5
6POSIX does not define it and uses -1 directly
7some libc do not have this definitions
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 tests/test-ovn.c | 4 ++++
12 1 file changed, 4 insertions(+)
13
14diff --git a/tests/test-ovn.c b/tests/test-ovn.c
15index 2e82a6f0d..76e7db9fb 100644
16--- a/tests/test-ovn.c
17+++ b/tests/test-ovn.c
18@@ -37,6 +37,10 @@
19 #include "simap.h"
20 #include "util.h"
21
22+#ifndef WAIT_ANY
23+# define WAIT_ANY (-1) /* Any process. */
24+#endif
25+
26 /* --relops: Bitmap of the relational operators to test, in exhaustive test. */
27 static unsigned int test_relops;
28
29--
302.12.0
31