* target.h: Add to_doc and target_preopen.

target.c: Add target_preopen and target_command.
	Remove target_info.
	(add_target): Call add_cmd and mess with targetlist->doc.
	core.c, exec.c, remote-eb.c, remote-nindy.c, remote-vx.c,
	remote-vx.68.c, inftarg.c, remote.c: Add doc field to target struct.
	Call target_preopen from open routine.
This commit is contained in:
Jim Kingdon
1991-04-19 01:36:57 +00:00
parent 70dcc196e1
commit f2fc6e7a5c
6 changed files with 101 additions and 76 deletions

View File

@ -162,6 +162,8 @@ remote_open (name, from_tty)
"To open a remote debug connection, you need to specify what serial\n\
device is attached to the remote system (e.g. /dev/ttya).");
target_preopen (from_tty);
remote_close (0);
#if 0
@ -805,6 +807,8 @@ dcache_init ()
struct target_ops remote_ops = {
"remote", "Remote serial target in gdb-specific protocol",
"Use a remote computer via a serial line, using a gdb-specific protocol.\n\
Specify the serial device it is connected to (e.g. /dev/ttya).",
remote_open, remote_close,
0, remote_detach, remote_resume, remote_wait, /* attach */
remote_fetch_registers, remote_store_registers,