diff options
author | Stu Grossman <grossman@cygnus> | 1994-11-03 22:40:14 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1994-11-03 22:40:14 +0000 |
commit | 78b459a7e7d0930a3ac1c4ca2fe4706559675cdc (patch) | |
tree | 1b0c70f4dee13d9078ee9b823d1f7803e0521fef /gdb/remote-es.c | |
parent | dd830c247d9f309090f43493d14cc0889ced19cc (diff) | |
download | gdb-78b459a7e7d0930a3ac1c4ca2fe4706559675cdc.zip gdb-78b459a7e7d0930a3ac1c4ca2fe4706559675cdc.tar.gz gdb-78b459a7e7d0930a3ac1c4ca2fe4706559675cdc.tar.bz2 |
* 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...
Diffstat (limited to 'gdb/remote-es.c')
-rw-r--r-- | gdb/remote-es.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/remote-es.c b/gdb/remote-es.c index 8d7ac35..162e853 100644 --- a/gdb/remote-es.c +++ b/gdb/remote-es.c @@ -2074,7 +2074,8 @@ Specify the serial device it is connected to (e.g. /dev/ttya).", es1800_create_inferior, /* to_create_inferior */ NULL, /* to_mourn_inferior */ 0, /* to_can_run */ - 0, /* notice_signals */ + 0, /* to_notice_signals */ + ignore, /* to_stop */ core_stratum, /* to_stratum */ 0, /* to_next */ 0, /* to_has_all_memory */ @@ -2122,6 +2123,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).", es1800_mourn_inferior, /* to_mourn_inferior */ 0, /* to_can_run */ 0, /* notice_signals */ + 0, /* to_stop */ process_stratum, /* to_stratum */ 0, /* to_next */ 1, /* to_has_all_memory */ |