aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2007-05-07 00:21:04 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2007-05-07 00:21:04 +0000
commit1da33a4a1be4fee5173e4acc9f5c992ec57da71b (patch)
tree9b7a440f8bac01b3341dabc4a0691cfe54b7367c /gdb/target.h
parent6f7a27d555d4603c7b62e89a4eedd18b02bdb701 (diff)
downloadgdb-1da33a4a1be4fee5173e4acc9f5c992ec57da71b.zip
gdb-1da33a4a1be4fee5173e4acc9f5c992ec57da71b.tar.gz
gdb-1da33a4a1be4fee5173e4acc9f5c992ec57da71b.tar.bz2
* inftarg.c, infptrace.c: Remove files.
* Makefile.in (ALLDEPFILES): Remove inftarg.c and infptrace.c (inftarg.o, infptrace.o): Remove rules. * gdbcore.h (register_addr): Remove prototype. * inferior.h (kill_inferior, store_inferior_registers, fetch_inferior_registers, attach, detach, ptrace_wait, child_resume, call_ptrace, pre_fork_inferior): Remove prototypes. * target.h (child_xfer_memory, child_pid_to_exec_file, child_core_file_to_sym_file, child_post_attach, child_post_startup_inferior, child_acknowledge_created_inferior, child_insert_fork_catchpoint, child_remove_fork_catchpoint, child_insert_vfork_catchpoint, child_remove_vfork_catchpoint, child_insert_exec_catchpoint, child_remove_exec_catchpoint, child_follow_fork, child_reported_exec_events_per_exec_call, child_has_exited, child_thread_alive): Remove prototypes.
Diffstat (limited to 'gdb/target.h')
-rw-r--r--gdb/target.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/gdb/target.h b/gdb/target.h
index 3382044..8796c08 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -621,9 +621,6 @@ extern int target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr,
extern int xfer_memory (CORE_ADDR, gdb_byte *, int, int,
struct mem_attrib *, struct target_ops *);
-extern int child_xfer_memory (CORE_ADDR, gdb_byte *, int, int,
- struct mem_attrib *, struct target_ops *);
-
/* Fetches the target's memory map. If one is found it is sorted
and returned, after some consistency checking. Otherwise, NULL
is returned. */
@@ -678,41 +675,6 @@ int target_write_memory_blocks (VEC(memory_write_request_s) *requests,
enum flash_preserve_mode preserve_flash_p,
void (*progress_cb) (ULONGEST, void *));
-
-extern char *child_pid_to_exec_file (int);
-
-extern char *child_core_file_to_sym_file (char *);
-
-#if defined(CHILD_POST_ATTACH)
-extern void child_post_attach (int);
-#endif
-
-extern void child_post_startup_inferior (ptid_t);
-
-extern void child_acknowledge_created_inferior (int);
-
-extern void child_insert_fork_catchpoint (int);
-
-extern int child_remove_fork_catchpoint (int);
-
-extern void child_insert_vfork_catchpoint (int);
-
-extern int child_remove_vfork_catchpoint (int);
-
-extern void child_acknowledge_created_inferior (int);
-
-extern int child_follow_fork (struct target_ops *, int);
-
-extern void child_insert_exec_catchpoint (int);
-
-extern int child_remove_exec_catchpoint (int);
-
-extern int child_reported_exec_events_per_exec_call (void);
-
-extern int child_has_exited (int, int, int *);
-
-extern int child_thread_alive (ptid_t);
-
/* From infrun.c. */
extern int inferior_has_forked (int pid, int *child_pid);