| From 3409dc35c15bb14c8a525239806322648e079ab1 Mon Sep 17 00:00:00 2001 |
| From: Khem Raj <raj.khem@gmail.com> |
| Date: Wed, 5 Jul 2017 17:12:43 -0700 |
| Subject: [PATCH 1/3] memcheck/arm64: Define __THROW if not already defined |
| |
| Helps compiling with musl where __THROW is not available |
| |
| Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| --- |
| Upstream-Status: Submitted |
| |
| memcheck/tests/arm64-linux/scalar.h | 4 ++++ |
| 1 file changed, 4 insertions(+) |
| |
| diff --git a/memcheck/tests/arm64-linux/scalar.h b/memcheck/tests/arm64-linux/scalar.h |
| index 9008816..8ef050f 100644 |
| --- a/memcheck/tests/arm64-linux/scalar.h |
| +++ b/memcheck/tests/arm64-linux/scalar.h |
| @@ -12,6 +12,10 @@ |
| #include <sys/types.h> |
| #include <sys/mman.h> |
| |
| +#ifndef __THROW |
| +#define __THROW |
| +#endif |
| + |
| // Since we use vki_unistd.h, we can't include <unistd.h>. So we have to |
| // declare this ourselves. |
| extern long int syscall (long int __sysno, ...) __THROW; |
| -- |
| 2.13.2 |
| |