blob: 8355fe44ea42cbf4a72c2eed380d48240bb76ebc [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001From 52fc1a7c17768fd52c3577d21dad84e8babb94b5 Mon Sep 17 00:00:00 2001
2From: Dengke Du <dengke.du@windriver.com>
3Date: Thu, 6 Apr 2017 23:01:14 -0400
4Subject: [PATCH 2/3] crash: fix build error unknown type name 'gdb_fpregset_t'
5
6Upstream-Status: Pending
7
8Signed-off-by: Dengke Du <dengke.du@windriver.com>
9---
10 gdb-7.6/gdb/gdb_proc_service.h | 3 +--
11 1 file changed, 1 insertion(+), 2 deletions(-)
12
13diff --git a/gdb-7.6/gdb/gdb_proc_service.h b/gdb-7.6/gdb/gdb_proc_service.h
14index 8bc6088..99c6496 100644
15--- a/gdb-7.6/gdb/gdb_proc_service.h
16+++ b/gdb-7.6/gdb/gdb_proc_service.h
17@@ -20,6 +20,7 @@
18 #define GDB_PROC_SERVICE_H
19
20 #include <sys/types.h>
21+#include "gregset.h"
22
23 #ifdef HAVE_PROC_SERVICE_H
24 #include <proc_service.h>
25@@ -53,8 +54,6 @@
26 #include <sys/procfs.h>
27 #endif
28
29-#include "gregset.h"
30-
31 /* Functions in this interface return one of these status codes. */
32 typedef enum
33 {
34--
352.8.1
36