This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[ob] More missing opaque decls


FYI,

committed,
Andrew
2003-09-13  Andrew Cagney  <cagney@redhat.com>

	* config/pa/tm-hppa64.h (struct frame_info): Declare opaque.
	* ppc-tdep.h (struct regcache): Declare opaque.
	* objfiles.h (struct objfile_data): Declare opaque.
	* cp-support.h (struct objfile): Declare opaque.
	* linux-nat.h (target_waitstatus): Declare opaque.

Index: cp-support.h
===================================================================
RCS file: /cvs/src/src/gdb/cp-support.h,v
retrieving revision 1.7
diff -u -r1.7 cp-support.h
--- cp-support.h	11 Sep 2003 19:49:17 -0000	1.7
+++ cp-support.h	14 Sep 2003 02:01:08 -0000
@@ -33,6 +33,7 @@
 struct symbol;
 struct obstack;
 struct block;
+struct objfile;
 
 /* This struct is designed to store data from using directives.  It
    says that names from namespace INNER should be visible within
Index: linux-nat.h
===================================================================
RCS file: /cvs/src/src/gdb/linux-nat.h,v
retrieving revision 1.4
diff -u -r1.4 linux-nat.h
--- linux-nat.h	7 Sep 2003 18:49:44 -0000	1.4
+++ linux-nat.h	14 Sep 2003 02:01:13 -0000
@@ -60,6 +60,7 @@
    system".  */
 struct mem_attrib;
 struct target_ops;
+struct target_waitstatus;
 
 extern int linux_proc_xfer_memory (CORE_ADDR addr, char *myaddr, int len,
 				   int write, struct mem_attrib *attrib,
Index: objfiles.h
===================================================================
RCS file: /cvs/src/src/gdb/objfiles.h,v
retrieving revision 1.25
diff -u -r1.25 objfiles.h
--- objfiles.h	12 Sep 2003 18:40:18 -0000	1.25
+++ objfiles.h	14 Sep 2003 02:01:14 -0000
@@ -29,6 +29,7 @@
 struct bcache;
 struct htab;
 struct symtab;
+struct objfile_data;
 
 /* This structure maintains information on a per-objfile basis about the
    "entry point" of the objfile, and the scope within which the entry point
Index: ppc-tdep.h
===================================================================
RCS file: /cvs/src/src/gdb/ppc-tdep.h,v
retrieving revision 1.17
diff -u -r1.17 ppc-tdep.h
--- ppc-tdep.h	9 Sep 2003 18:29:27 -0000	1.17
+++ ppc-tdep.h	14 Sep 2003 02:01:14 -0000
@@ -25,6 +25,7 @@
 struct gdbarch;
 struct frame_info;
 struct value;
+struct regcache;
 
 /* From ppc-linux-tdep.c... */
 CORE_ADDR ppc_linux_frame_saved_pc (struct frame_info *fi);
Index: config/pa/tm-hppa64.h
===================================================================
RCS file: /cvs/src/src/gdb/config/pa/tm-hppa64.h,v
retrieving revision 1.29
diff -u -r1.29 tm-hppa64.h
--- config/pa/tm-hppa64.h	3 Sep 2003 15:02:50 -0000	1.29
+++ config/pa/tm-hppa64.h	14 Sep 2003 02:01:37 -0000
@@ -24,6 +24,8 @@
 /* PA 64-bit specific definitions.  Override those which are in
    tm-hppa.h */
 
+struct frame_info;
+
 /* jimb: this must go.  I'm just using it to disable code I haven't
    gotten working yet.  */
 #define GDB_TARGET_IS_HPPA_20W
Index: tui/ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/tui/ChangeLog,v
retrieving revision 1.121
diff -u -r1.121 ChangeLog
--- tui/ChangeLog	4 Aug 2003 19:28:17 -0000	1.121
+++ tui/ChangeLog	14 Sep 2003 02:01:48 -0000
@@ -1,3 +1,7 @@
+2003-09-13  Andrew Cagney  <cagney@redhat.com>
+
+	* tui.h (struct ui_file): Add opaque declaration.
+
 2003-08-04  Daniel Jacobowitz  <drow@mvista.com>
 
 	* tui-interp.c: Include "cli-out.h".
Index: tui/tui.h
===================================================================
RCS file: /cvs/src/src/gdb/tui/tui.h,v
retrieving revision 1.16
diff -u -r1.16 tui.h
--- tui/tui.h	31 Aug 2002 12:25:29 -0000	1.16
+++ tui/tui.h	14 Sep 2003 02:01:48 -0000
@@ -33,6 +33,8 @@
 #undef chtype
 #endif
 
+struct ui_file;
+
 /* Opaque data type */
 typedef char *Opaque;
 typedef

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]