Move interpreter_p declaration to main.h
authorTom Tromey <tromey@adacore.com>
Wed, 1 May 2019 18:28:45 +0000 (12:28 -0600)
committerTom Tromey <tromey@adacore.com>
Wed, 8 May 2019 16:38:02 +0000 (10:38 -0600)
This moves the interpreter_p declaration from defs.h to main.h.  I
think this makes more sense, as it is defined in main.c.  Also, this
declaration was in the wrong place -- between a comment and the things
the comment described.

gdb/ChangeLog
2019-05-08  Tom Tromey  <tromey@adacore.com>

* tui/tui-interp.c: Include main.h.
* interps.c: Include main.h.
* main.h (interpreter_p): Declare.
* defs.h (interpreter_p): Don't declare.

gdb/ChangeLog
gdb/defs.h
gdb/interps.c
gdb/main.h
gdb/tui/tui-interp.c

index 0293096ee22b6167f1804b74484a2da6bea594a7..700afe7526b42a7d304e2bf524359d6e2c7ff1eb 100644 (file)
@@ -1,3 +1,10 @@
+2019-05-08  Tom Tromey  <tromey@adacore.com>
+
+       * tui/tui-interp.c: Include main.h.
+       * interps.c: Include main.h.
+       * main.h (interpreter_p): Declare.
+       * defs.h (interpreter_p): Don't declare.
+
 2019-05-08  Tom Tromey  <tromey@adacore.com>
 
        * dwarf2loc.c: Include dwarf2read.h.
index 673a200d5d0e1f40232fb3c6346f516e848cf102..5a1995b49918244d58be8817d2e2f7ae3d716a56 100644 (file)
@@ -584,9 +584,6 @@ extern int watchdog;
 
 /* Hooks for alternate command interfaces.  */
 
-/* * The name of the interpreter if specified on the command line.  */
-extern char *interpreter_p;
-
 struct target_waitstatus;
 struct cmd_list_element;
 
index b62e33339a2fc27689c3ff82e53aa6bd44ab9e61..dfd6eb906550a45944235279ab1a7fb9b4853dbb 100644 (file)
@@ -38,6 +38,7 @@
 #include "completer.h"
 #include "top.h"               /* For command_loop.  */
 #include "continuations.h"
+#include "main.h"
 
 /* Each UI has its own independent set of interpreters.  */
 
index e707bf33efb35a52dccf3a7d90454d5cc02335ba..e44779a05604ff63e331e0a9ae34d650094086d8 100644 (file)
@@ -35,6 +35,9 @@ extern int return_child_result_value;
 extern int batch_silent;
 extern int batch_flag;
 
+/* * The name of the interpreter if specified on the command line.  */
+extern char *interpreter_p;
+
 /* From mingw-hdep.c, used by main.c.  */
 
 /* Return argv[0] in absolute form, if possible, or ARGV0 if not.  The
index 14215b83dea09fd86639d1da26e2fda3f625cf12..d1146fed0e6985e70359247ba6a2ed2a6107a628 100644 (file)
@@ -34,6 +34,7 @@
 #include "observable.h"
 #include "gdbthread.h"
 #include "inferior.h"
+#include "main.h"
 
 /* Set to 1 when the TUI mode must be activated when we first start
    gdb.  */