meta-agl-profile-telematics: recipes-core: systemd: change canbus systemd match regex
[AGL/meta-agl.git] / meta-agl-profile-core / recipes-devtools / valgrind / valgrind / 0001-memcheck-tests-Use-ucontext_t-instead-of-struct-ucon.patch
1 From 629ac492b1d9bc709d17337eb9b1c28603eca250 Mon Sep 17 00:00:00 2001
2 From: Khem Raj <raj.khem@gmail.com>
3 Date: Wed, 28 Jun 2017 11:01:25 -0700
4 Subject: [PATCH] memcheck/tests: Use ucontext_t instead of struct ucontext
5
6 glibc 2.26 does not expose struct ucontext anymore
7
8 Upstream-Status: Submitted [https://bugs.kde.org/show_bug.cgi?id=381769]
9
10 Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 ---
12  memcheck/tests/linux/stack_changes.c | 2 +-
13  1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/memcheck/tests/linux/stack_changes.c b/memcheck/tests/linux/stack_changes.c
16 index ffb49c6..acc4109 100644
17 --- a/memcheck/tests/linux/stack_changes.c
18 +++ b/memcheck/tests/linux/stack_changes.c
19 @@ -11,7 +11,7 @@
20  // checks that Valgrind notices their stack changes properly.
21  
22  #ifdef __GLIBC__
23 -typedef  struct ucontext  mycontext;
24 +typedef ucontext_t  mycontext;
25  
26  mycontext ctx1, ctx2, oldc;
27  int count;
28 -- 
29 2.13.2
30