blob: 480fe33247abfa9df04c56ed03b5ba5db2929a19 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From bd4e926e7e14747b3cd4d7b2a1bd5410b22f3ea2 Mon Sep 17 00:00:00 2001
2From: Randy MacLeod <Randy.MacLeod@windriver.com>
3Date: Tue, 16 Oct 2018 21:27:46 -0400
4Subject: [PATCH] context APIs are not available on musl
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005
6Upstream-Status: Pending
7
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08008Updated patch for valgrind-3.14
9
Brad Bishopd7bf8c12018-02-25 22:55:05 -050010Signed-off-by: Khem Raj <raj.khem@gmail.com>
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080011Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -050012---
13 memcheck/tests/linux/stack_changes.c | 7 ++++++-
14 1 file changed, 6 insertions(+), 1 deletion(-)
15
16diff --git a/memcheck/tests/linux/stack_changes.c b/memcheck/tests/linux/stack_changes.c
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080017index 7f97b90a5..a26cb4ae6 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018--- a/memcheck/tests/linux/stack_changes.c
19+++ b/memcheck/tests/linux/stack_changes.c
20@@ -10,6 +10,7 @@
21 // This test is checking the libc context calls (setcontext, etc.) and
22 // checks that Valgrind notices their stack changes properly.
23
24+#ifdef __GLIBC__
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080025 typedef ucontext_t mycontext;
Brad Bishopd7bf8c12018-02-25 22:55:05 -050026
27 mycontext ctx1, ctx2, oldc;
28@@ -51,9 +52,11 @@ int init_context(mycontext *uc)
29
30 return ret;
31 }
32+#endif
33
34 int main(int argc, char **argv)
35 {
36+#ifdef __GLIBC__
37 int c1 = init_context(&ctx1);
38 int c2 = init_context(&ctx2);
39
40@@ -66,6 +69,8 @@ int main(int argc, char **argv)
41 //free(ctx1.uc_stack.ss_sp);
42 VALGRIND_STACK_DEREGISTER(c2);
43 //free(ctx2.uc_stack.ss_sp);
44-
45+#else
46+ printf("libc context call APIs e.g. getcontext() are deprecated by posix\n");
47+#endif
48 return 0;
49 }
50--
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800512.17.0
Brad Bishopd7bf8c12018-02-25 22:55:05 -050052