aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/target.c6
-rw-r--r--gdb/target.h2
3 files changed, 5 insertions, 8 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 3b14ae4..13746fe 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
2011-01-14 Pedro Alves <pedro@codesourcery.com>
+ * target.h (deprecated_child_ops): Delete declaration.
+ * target.c (deprecated_child_ops): Delete definition.
+
+2011-01-14 Pedro Alves <pedro@codesourcery.com>
+
* Makefile.in (hpux-thread.o): Delete rule.
* configure.ac: Don't check for HPUX DCE threads support.
* configure, config.in: Regenerate.
diff --git a/gdb/target.c b/gdb/target.c
index ff87931..32da4dd 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -157,12 +157,6 @@ static void debug_to_notice_signals (ptid_t);
static void debug_to_stop (ptid_t);
-/* NOTE: cagney/2004-09-29: Many targets reference this variable in
- wierd and mysterious ways. Putting the variable here lets those
- wierd and mysterious ways keep building while they are being
- converted to the inferior inheritance structure. */
-struct target_ops deprecated_child_ops;
-
/* Pointer to array of target architecture structures; the size of the
array; the current index into the array; the allocated size of the
array. */
diff --git a/gdb/target.h b/gdb/target.h
index 15a6680..c9f9ef0 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -1633,6 +1633,4 @@ extern void update_target_permissions (void);
/* Blank target vector entries are initialized to target_ignore. */
void target_ignore (void);
-extern struct target_ops deprecated_child_ops;
-
#endif /* !defined (TARGET_H) */