gdb: make throw_perror_with_name static
authorAndrew Burgess <aburgess@redhat.com>
Tue, 7 Jun 2022 16:23:42 +0000 (17:23 +0100)
committerAndrew Burgess <aburgess@redhat.com>
Wed, 8 Jun 2022 19:04:33 +0000 (20:04 +0100)
The throw_perror_with_name function is not used outside of utils.c
right now.  And as perror_with_name is just a wrapper around
throw_perror_with_name, then any future calls would be to
perror_with_name.

Lets make throw_perror_with_name static.

There should be no user visible changes after this commit.

gdb/utils.c
gdb/utils.h

index f9dc4f234310c6bda1807a27507ee56f05472e13..413a4f4d53b6a931858a01f6bfcca60695a4f921 100644 (file)
@@ -623,7 +623,7 @@ perror_string (const char *prefix)
    as the file name for which the error was encountered.  Use ERRCODE
    for the thrown exception.  Then return to command level.  */
 
-void
+static void ATTRIBUTE_NORETURN
 throw_perror_with_name (enum errors errcode, const char *string)
 {
   std::string combined = perror_string (string);
index 7e2028580bf72c202eec248283ea992167ab4073..d2acf899ba280527ee13f9f478a9f7b2cb467620 100644 (file)
@@ -296,9 +296,6 @@ extern CORE_ADDR string_to_core_addr (const char *my_string);
 extern void fprintf_symbol (struct ui_file *, const char *,
                            enum language, int);
 
-extern void throw_perror_with_name (enum errors errcode, const char *string)
-  ATTRIBUTE_NORETURN;
-
 extern void perror_warning_with_name (const char *string);
 
 extern void print_sys_errmsg (const char *, int);