public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdb: remove unused argument from gdb_init
@ 2021-04-28 10:27 Andrew Burgess
  0 siblings, 0 replies; only message in thread
From: Andrew Burgess @ 2021-04-28 10:27 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=a3b5ef3e45642e2e162f02f125a2322c3d1ad95f

commit a3b5ef3e45642e2e162f02f125a2322c3d1ad95f
Author: Andrew Burgess <andrew.burgess@embecosm.com>
Date:   Thu Apr 22 16:46:23 2021 +0100

    gdb: remove unused argument from gdb_init
    
    The argument to gdb_init is not used, remove it.
    
    There should be no user visible changes after this commit.
    
    gdb/ChangeLog:
    
            * main.c (captured_main_1): Don't pass argument to gdb_init.
            * top.c (gdb_init): Remove unused argument, and add header
            comment.
            * top.h (gdb_init): Remove argument.

Diff:
---
 gdb/ChangeLog | 7 +++++++
 gdb/main.c    | 2 +-
 gdb/top.c     | 4 +++-
 gdb/top.h     | 2 +-
 4 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6d7b341dc22..c5db0041e52 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+2021-04-28  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+	* main.c (captured_main_1): Don't pass argument to gdb_init.
+	* top.c (gdb_init): Remove unused argument, and add header
+	comment.
+	* top.h (gdb_init): Remove argument.
+
 2021-04-27  Luis Machado  <luis.machado@linaro.org>
 
 	* psymtab.c (psymbol_functions::dump): Output newline.
diff --git a/gdb/main.c b/gdb/main.c
index 60c08fb83dd..652e6f76fa0 100644
--- a/gdb/main.c
+++ b/gdb/main.c
@@ -1039,7 +1039,7 @@ captured_main_1 (struct captured_main_args *context)
   gdb::alternate_signal_stack signal_stack;
 
   /* Initialize all files.  */
-  gdb_init (gdb_program_name);
+  gdb_init ();
 
   /* Process early init files and early init options from the command line.  */
   if (!inhibit_gdbinit)
diff --git a/gdb/top.c b/gdb/top.c
index ecd90a1433a..b58cd4facfc 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -2360,8 +2360,10 @@ The second argument is the terminal the UI runs on."), &cmdlist);
   set_cmd_completer (c, interpreter_completer);
 }
 
+/* See top.h.  */
+
 void
-gdb_init (char *argv0)
+gdb_init ()
 {
   saved_command_line = xstrdup ("");
   previous_saved_command_line = xstrdup ("");
diff --git a/gdb/top.h b/gdb/top.h
index 9438e52331b..56bd06c698b 100644
--- a/gdb/top.h
+++ b/gdb/top.h
@@ -271,7 +271,7 @@ extern void set_prompt (const char *s);
 extern int gdb_in_secondary_prompt_p (struct ui *ui);
 
 /* Perform _initialize initialization.  */
-extern void gdb_init (char *);
+extern void gdb_init ();
 
 /* For use by event-top.c.  */
 /* Variables from top.c.  */


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-04-28 10:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-28 10:27 [binutils-gdb] gdb: remove unused argument from gdb_init Andrew Burgess

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).