a48d7db070fbefedff2523b9ed0434fbdc3a03aa
[AGL/meta-agl.git] / meta-agl-profile-core / recipes-devtools / valgrind / valgrind / 0001-memcheck-arm64-Define-__THROW-if-not-already-defined.patch
1 From 3409dc35c15bb14c8a525239806322648e079ab1 Mon Sep 17 00:00:00 2001
2 From: Khem Raj <raj.khem@gmail.com>
3 Date: Wed, 5 Jul 2017 17:12:43 -0700
4 Subject: [PATCH 1/3] memcheck/arm64: Define __THROW if not already defined
5
6 Helps compiling with musl where __THROW is not available
7
8 Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 ---
10 Upstream-Status: Submitted
11
12  memcheck/tests/arm64-linux/scalar.h | 4 ++++
13  1 file changed, 4 insertions(+)
14
15 diff --git a/memcheck/tests/arm64-linux/scalar.h b/memcheck/tests/arm64-linux/scalar.h
16 index 9008816..8ef050f 100644
17 --- a/memcheck/tests/arm64-linux/scalar.h
18 +++ b/memcheck/tests/arm64-linux/scalar.h
19 @@ -12,6 +12,10 @@
20  #include <sys/types.h>
21  #include <sys/mman.h>
22  
23 +#ifndef __THROW
24 +#define __THROW
25 +#endif
26 +
27  // Since we use vki_unistd.h, we can't include <unistd.h>.  So we have to
28  // declare this ourselves.
29  extern long int syscall (long int __sysno, ...) __THROW;
30 -- 
31 2.13.2
32