blob: 170d512ef7893831deb0cc2bb6e7391626079068 [file] [log] [blame]
Brad Bishop15ae2502019-06-18 21:44:24 -04001From da30370c1e3ff7728a857e119e0529a9f097086e 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
Brad Bishop15ae2502019-06-18 21:44:24 -04004Subject: [PATCH] ppc/ptrace: Define pt_regs uapi_pt_regs on !GLIBC systems
Patrick Williamsc0f7c042017-02-23 20:41:17 -06005
6Upstream-Status: Pending
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
Brad Bishop15ae2502019-06-18 21:44:24 -04009
Patrick Williamsc0f7c042017-02-23 20:41:17 -060010---
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 Bishop15ae2502019-06-18 21:44:24 -040016index 1b695e53..1978347c 100644
Patrick Williamsc0f7c042017-02-23 20:41:17 -060017--- a/gdb/gdbserver/linux-ppc-low.c
18+++ b/gdb/gdbserver/linux-ppc-low.c
Brad Bishop15ae2502019-06-18 21:44:24 -040019@@ -23,7 +23,13 @@
20 #include "elf/common.h"
21 #include <sys/uio.h>
Patrick Williamsc0f7c042017-02-23 20:41:17 -060022 #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
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080031 #include "arch/ppc-linux-common.h"
32 #include "arch/ppc-linux-tdesc.h"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060033diff --git a/gdb/nat/ppc-linux.h b/gdb/nat/ppc-linux.h
Brad Bishop15ae2502019-06-18 21:44:24 -040034index f1561b3b..40399361 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 @@
Brad Bishop15ae2502019-06-18 21:44:24 -040038 #ifndef NAT_PPC_LINUX_H
39 #define NAT_PPC_LINUX_H
Patrick Williamsc0f7c042017-02-23 20:41:17 -060040
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. */