blob: 357db25ec13dfb66831d778fcf6931709be88925 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From 0f6d71118ca914002fcad78d2c8a518223d06bfb Mon Sep 17 00:00:00 2001
Patrick Williamsc0f7c042017-02-23 20:41:17 -06002From: Khem Raj <raj.khem@gmail.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -05003Date: Sat, 30 Apr 2016 18:32:14 -0700
Patrick Williamsc0f7c042017-02-23 20:41:17 -06004Subject: [PATCH 04/10] ppc/ptrace: Define pt_regs uapi_pt_regs on !GLIBC
5 systems
6
7Upstream-Status: Pending
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 gdb/gdbserver/linux-ppc-low.c | 6 ++++++
12 gdb/nat/ppc-linux.h | 6 ++++++
13 2 files changed, 12 insertions(+)
14
15diff --git a/gdb/gdbserver/linux-ppc-low.c b/gdb/gdbserver/linux-ppc-low.c
Brad Bishopd7bf8c12018-02-25 22:55:05 -050016index 33a9feb12c..1a9141faef 100644
Patrick Williamsc0f7c042017-02-23 20:41:17 -060017--- a/gdb/gdbserver/linux-ppc-low.c
18+++ b/gdb/gdbserver/linux-ppc-low.c
19@@ -21,7 +21,13 @@
20 #include "linux-low.h"
21
22 #include <elf.h>
23+#if !defined(__GLIBC__)
24+# define pt_regs uapi_pt_regs
25+#endif
26 #include <asm/ptrace.h>
27+#if !defined(__GLIBC__)
28+# undef pt_regs
29+#endif
30
31 #include "nat/ppc-linux.h"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050032 #include "linux-ppc-tdesc.h"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060033diff --git a/gdb/nat/ppc-linux.h b/gdb/nat/ppc-linux.h
Brad Bishopd7bf8c12018-02-25 22:55:05 -050034index 5837ea1767..7233929192 100644
Patrick Williamsc0f7c042017-02-23 20:41:17 -060035--- a/gdb/nat/ppc-linux.h
36+++ b/gdb/nat/ppc-linux.h
37@@ -18,7 +18,13 @@
38 #ifndef PPC_LINUX_H
39 #define PPC_LINUX_H 1
40
41+#if !defined(__GLIBC__)
42+# define pt_regs uapi_pt_regs
43+#endif
44 #include <asm/ptrace.h>
45+#if !defined(__GLIBC__)
46+# undef pt_regs
47+#endif
48 #include <asm/cputable.h>
49
50 /* This sometimes isn't defined. */
51--
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500522.13.1
Patrick Williamsc0f7c042017-02-23 20:41:17 -060053