mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

Refresh patches with devtool command to fix do_patch warning. Drop CVE-2017-9263.patch since it had been fixed upstream. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
30 lines
776 B
Diff
30 lines
776 B
Diff
From 801023e72b31e7c49cbccedd76ade33a17fcbe45 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Mon, 20 Mar 2017 12:13:30 -0700
|
|
Subject: [PATCH] Define WAIT_ANY if not provided by system
|
|
|
|
POSIX does not define it and uses -1 directly
|
|
some libc do not have this definitions
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
---
|
|
tests/test-ovn.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/tests/test-ovn.c b/tests/test-ovn.c
|
|
index 84adf81..2bc6bdf 100644
|
|
--- a/tests/test-ovn.c
|
|
+++ b/tests/test-ovn.c
|
|
@@ -38,6 +38,10 @@
|
|
#include "simap.h"
|
|
#include "util.h"
|
|
|
|
+#ifndef WAIT_ANY
|
|
+# define WAIT_ANY (-1) /* Any process. */
|
|
+#endif
|
|
+
|
|
/* --relops: Bitmap of the relational operators to test, in exhaustive test. */
|
|
static unsigned int test_relops;
|
|
|