summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/valgrind/valgrind/0002-context-APIs-are-not-available-on-musl.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/valgrind/valgrind/0002-context-APIs-are-not-available-on-musl.patch')
-rw-r--r--meta/recipes-devtools/valgrind/valgrind/0002-context-APIs-are-not-available-on-musl.patch17
1 files changed, 10 insertions, 7 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind/0002-context-APIs-are-not-available-on-musl.patch b/meta/recipes-devtools/valgrind/valgrind/0002-context-APIs-are-not-available-on-musl.patch
index 3f9f33b487..480fe33247 100644
--- a/meta/recipes-devtools/valgrind/valgrind/0002-context-APIs-are-not-available-on-musl.patch
+++ b/meta/recipes-devtools/valgrind/valgrind/0002-context-APIs-are-not-available-on-musl.patch
@@ -1,17 +1,20 @@
1From 862b807076d57f2f58ed9d572ddac8bb402774a2 Mon Sep 17 00:00:00 2001 1From bd4e926e7e14747b3cd4d7b2a1bd5410b22f3ea2 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Randy MacLeod <Randy.MacLeod@windriver.com>
3Date: Sat, 10 Jun 2017 01:01:10 -0700 3Date: Tue, 16 Oct 2018 21:27:46 -0400
4Subject: [PATCH 2/6] context APIs are not available on musl 4Subject: [PATCH] context APIs are not available on musl
5 5
6Upstream-Status: Pending 6Upstream-Status: Pending
7 7
8Updated patch for valgrind-3.14
9
8Signed-off-by: Khem Raj <raj.khem@gmail.com> 10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
9--- 12---
10 memcheck/tests/linux/stack_changes.c | 7 ++++++- 13 memcheck/tests/linux/stack_changes.c | 7 ++++++-
11 1 file changed, 6 insertions(+), 1 deletion(-) 14 1 file changed, 6 insertions(+), 1 deletion(-)
12 15
13diff --git a/memcheck/tests/linux/stack_changes.c b/memcheck/tests/linux/stack_changes.c 16diff --git a/memcheck/tests/linux/stack_changes.c b/memcheck/tests/linux/stack_changes.c
14index a978fc2..ffb49c6 100644 17index 7f97b90a5..a26cb4ae6 100644
15--- a/memcheck/tests/linux/stack_changes.c 18--- a/memcheck/tests/linux/stack_changes.c
16+++ b/memcheck/tests/linux/stack_changes.c 19+++ b/memcheck/tests/linux/stack_changes.c
17@@ -10,6 +10,7 @@ 20@@ -10,6 +10,7 @@
@@ -19,7 +22,7 @@ index a978fc2..ffb49c6 100644
19 // checks that Valgrind notices their stack changes properly. 22 // checks that Valgrind notices their stack changes properly.
20 23
21+#ifdef __GLIBC__ 24+#ifdef __GLIBC__
22 typedef struct ucontext mycontext; 25 typedef ucontext_t mycontext;
23 26
24 mycontext ctx1, ctx2, oldc; 27 mycontext ctx1, ctx2, oldc;
25@@ -51,9 +52,11 @@ int init_context(mycontext *uc) 28@@ -51,9 +52,11 @@ int init_context(mycontext *uc)
@@ -45,5 +48,5 @@ index a978fc2..ffb49c6 100644
45 return 0; 48 return 0;
46 } 49 }
47-- 50--
482.13.1 512.17.0
49 52