This is the mail archive of the gdb-cvs@sourceware.org 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]

[binutils-gdb] Remove unused function declarations in target.h


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

commit b072f6c163b25ec90d592ca42aeb56bc88e8da0c
Author: Simon Marchi <simon.marchi@ericsson.com>
Date:   Tue Mar 3 12:45:11 2015 -0500

    Remove unused function declarations in target.h
    
    find_default_create_inferior and find_default_attach were removed in b3ccfe11.
    
    gdb/ChangeLog:
    
    	* target.h (find_default_create_inferior): Remove declaration.
    	(find_default_attach): Likewise.

Diff:
---
 gdb/ChangeLog | 5 +++++
 gdb/target.h  | 5 -----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 20250e4..b0da91d 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2015-03-03  Simon Marchi  <simon.marchi@ericsson.com>
+
+	* target.h (find_default_create_inferior): Remove declaration.
+	(find_default_attach): Likewise.
+
 2015-03-03  Pedro Alves  <palves@redhat.com>
 
 	* inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
diff --git a/gdb/target.h b/gdb/target.h
index a2d64bf..5ba8425 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -2175,11 +2175,6 @@ extern void noprocess (void) ATTRIBUTE_NORETURN;
 
 extern void target_require_runnable (void);
 
-extern void find_default_attach (struct target_ops *, const char *, int);
-
-extern void find_default_create_inferior (struct target_ops *,
-					  char *, char *, char **, int);
-
 extern struct target_ops *find_target_beneath (struct target_ops *);
 
 /* Find the target at STRATUM.  If no target is at that stratum,


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