* corelow.c, exec.c, inftarg.c, m3-nat.c, op50-rom.c, procfs.c,

remote-adapt.c, remote-e7000.c, remote-eb.c, remote-es.c,
	remote-hms.c, remote-mips.c, remote-mm.c, remote-mon.c,
	remote-nindy.c, remote-os9k.c, remote-pa.c, remote-sim.c,
	remote-st.c, remote-udi.c, remote-vx.c, remote-z8k.c, remote.c,
	w89k-rom.c, target.c, target.h:  Add support for target_stop().
	* gdbtk.c (gdb_stop):  Switch to target_stop().
	* ChangeLog:  Fix comment to make shebs happy...
This commit is contained in:
Stu Grossman 1994-11-03 22:40:14 +00:00
parent dd830c247d
commit 78b459a7e7
17 changed files with 89 additions and 20 deletions

View file

@ -4521,6 +4521,12 @@ char *p;
}
#endif DUMP_SYSCALL
static void
m3_stop ()
{
error ("to_stop target function not implemented");
}
struct target_ops m3_ops = {
"mach", /* to_shortname */
"Mach child process", /* to_longname */
@ -4551,6 +4557,7 @@ struct target_ops m3_ops = {
m3_mourn_inferior, /* to_mourn_inferior */
m3_can_run, /* to_can_run */
0, /* to_notice_signals */
m3_stop, /* to_stop */
process_stratum, /* to_stratum */
0, /* to_next */
1, /* to_has_all_memory */