summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStu Grossman <grossman@cygnus>1994-11-03 22:40:14 +0000
committerStu Grossman <grossman@cygnus>1994-11-03 22:40:14 +0000
commit78b459a7e7d0930a3ac1c4ca2fe4706559675cdc (patch)
tree1b0c70f4dee13d9078ee9b823d1f7803e0521fef
parentdd830c247d9f309090f43493d14cc0889ced19cc (diff)
downloadppe42-binutils-78b459a7e7d0930a3ac1c4ca2fe4706559675cdc.tar.gz
ppe42-binutils-78b459a7e7d0930a3ac1c4ca2fe4706559675cdc.zip
* 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...
-rw-r--r--gdb/ChangeLog13
-rw-r--r--gdb/corelow.c56
-rw-r--r--gdb/m3-nat.c7
-rw-r--r--gdb/op50-rom.c1
-rw-r--r--gdb/procfs.c15
-rw-r--r--gdb/remote-adapt.c1
-rw-r--r--gdb/remote-eb.c1
-rw-r--r--gdb/remote-es.c4
-rw-r--r--gdb/remote-hms.c1
-rw-r--r--gdb/remote-mips.c1
-rw-r--r--gdb/remote-mm.c1
-rw-r--r--gdb/remote-mon.c3
-rw-r--r--gdb/remote-nindy.c1
-rw-r--r--gdb/remote-os9k.c1
-rw-r--r--gdb/remote-pa.c1
-rw-r--r--gdb/remote-sim.c1
-rw-r--r--gdb/remote-st.c1
17 files changed, 89 insertions, 20 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 539c53a6ff..041d9b1a22 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,13 @@
+Thu Nov 3 14:25:24 1994 Stu Grossman (grossman@cygnus.com)
+
+ * 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().
+
Thu Nov 3 01:23:45 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* osfsolib.c (solib_map_sections, first_link_map_member,
@@ -26,8 +36,7 @@ Tue Nov 1 16:41:12 1994 Stu Grossman (grossman@cygnus.com)
* gdbtk.c: Get rid of lots of unnecessary #includes.
* (gdbtk_init): Use ConnectionNumber macro instead of referencing
Display structure directly.
- * gdbtk.tcl: Change exit button to quit button (makes shebs
- happy).
+ * gdbtk.tcl: Change exit button to quit button.
Tue Nov 1 13:00:46 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
diff --git a/gdb/corelow.c b/gdb/corelow.c
index 235b043ced..90196b93ae 100644
--- a/gdb/corelow.c
+++ b/gdb/corelow.c
@@ -327,23 +327,45 @@ ignore (addr, contents)
}
struct target_ops core_ops = {
- "core", "Local core dump file",
- "Use a core file as a target. Specify the filename of the core file.",
- core_open, core_close,
- find_default_attach, core_detach, 0, 0, /* resume, wait */
- get_core_registers,
- 0, 0, /* store_regs, prepare_to_store */
- xfer_memory, core_files_info,
- ignore, ignore, /* core_insert_breakpoint, core_remove_breakpoint, */
- 0, 0, 0, 0, 0, /* terminal stuff */
- 0, 0, 0, /* kill, load, lookup sym */
- find_default_create_inferior, 0, /* mourn_inferior */
- 0, /* can_run */
- 0, /* notice_signals */
- core_stratum, 0, /* next */
- 0, 1, 1, 1, 0, /* all mem, mem, stack, regs, exec */
- 0, 0, /* section pointers */
- OPS_MAGIC, /* Always the last thing */
+ "core", /* to_shortname */
+ "Local core dump file", /* to_longname */
+ "Use a core file as a target. Specify the filename of the core file.", /* to_doc */
+ core_open, /* to_open */
+ core_close, /* to_close */
+ find_default_attach, /* to_attach */
+ core_detach, /* to_detach */
+ 0, /* to_resume */
+ 0, /* to_wait */
+ get_core_registers, /* to_fetch_registers */
+ 0, /* to_store_registers */
+ 0, /* to_prepare_to_store */
+ xfer_memory, /* to_xfer_memory */
+ core_files_info, /* to_files_info */
+ ignore, /* to_insert_breakpoint */
+ ignore, /* to_remove_breakpoint */
+ 0, /* to_terminal_init */
+ 0, /* to_terminal_inferior */
+ 0, /* to_terminal_ours_for_output */
+ 0, /* to_terminal_ours */
+ 0, /* to_terminal_info */
+ 0, /* to_kill */
+ 0, /* to_load */
+ 0, /* to_lookup_symbol */
+ find_default_create_inferior, /* to_create_inferior */
+ 0, /* to_mourn_inferior */
+ 0, /* to_can_run */
+ 0, /* to_notice_signals */
+ 0, /* to_stop */
+ core_stratum, /* to_stratum */
+ 0, /* to_next */
+ 0, /* to_has_all_memory */
+ 1, /* to_has_memory */
+ 1, /* to_has_stack */
+ 1, /* to_has_registers */
+ 0, /* to_has_execution */
+ 0, /* to_sections */
+ 0, /* to_sections_end */
+ OPS_MAGIC, /* to_magic */
};
void
diff --git a/gdb/m3-nat.c b/gdb/m3-nat.c
index 179c981efa..64cc059fff 100644
--- a/gdb/m3-nat.c
+++ b/gdb/m3-nat.c
@@ -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 */
diff --git a/gdb/op50-rom.c b/gdb/op50-rom.c
index dd02089830..b7e2df1672 100644
--- a/gdb/op50-rom.c
+++ b/gdb/op50-rom.c
@@ -73,6 +73,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).",
monitor_mourn_inferior,
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum,
0, /* next */
1,
diff --git a/gdb/procfs.c b/gdb/procfs.c
index e6e3f9c6b1..0f75191bb7 100644
--- a/gdb/procfs.c
+++ b/gdb/procfs.c
@@ -3656,6 +3656,20 @@ procfs_stopped_by_watchpoint(pid)
}
#endif
+/* Send a SIGINT to the process group. This acts just like the user typed a
+ ^C on the controlling terminal.
+
+ XXX - This may not be correct for all systems. Some may want to use
+ killpg() instead of kill (-pgrp). */
+
+void
+child_stop ()
+{
+ extern pid_t inferior_process_group;
+
+ kill (-inferior_process_group, SIGINT);
+}
+
struct target_ops procfs_ops = {
"procfs", /* to_shortname */
@@ -3686,6 +3700,7 @@ struct target_ops procfs_ops = {
procfs_mourn_inferior, /* to_mourn_inferior */
procfs_can_run, /* to_can_run */
procfs_notice_signals, /* to_notice_signals */
+ child_stop, /* to_stop */
process_stratum, /* to_stratum */
0, /* to_next */
1, /* to_has_all_memory */
diff --git a/gdb/remote-adapt.c b/gdb/remote-adapt.c
index 1221315354..62562c7d2b 100644
--- a/gdb/remote-adapt.c
+++ b/gdb/remote-adapt.c
@@ -1343,6 +1343,7 @@ struct target_ops adapt_ops = {
adapt_mourn, /* mourn_inferior FIXME */
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum, 0, /* next */
1, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */
0,0, /* Section pointers */
diff --git a/gdb/remote-eb.c b/gdb/remote-eb.c
index 5cf0c7535c..0d9b37745e 100644
--- a/gdb/remote-eb.c
+++ b/gdb/remote-eb.c
@@ -995,6 +995,7 @@ executable as it exists on the remote computer. For example,\n\
eb_mourn_inferior,
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum, 0, /* next */
1, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */
0, 0, /* Section pointers */
diff --git a/gdb/remote-es.c b/gdb/remote-es.c
index 8d7ac35ebe..162e853eae 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 */
diff --git a/gdb/remote-hms.c b/gdb/remote-hms.c
index 3b90553b5d..bc114c4ef3 100644
--- a/gdb/remote-hms.c
+++ b/gdb/remote-hms.c
@@ -1521,6 +1521,7 @@ by a serial line.",
hms_mourn, /* mourn_inferior FIXME */
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum, 0, /* next */
1, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */
0, 0, /* Section pointers */
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c
index 0a31d779dd..0123dbd3d7 100644
--- a/gdb/remote-mips.c
+++ b/gdb/remote-mips.c
@@ -1525,6 +1525,7 @@ HOST:PORT to access a board over a network", /* to_doc */
mips_mourn_inferior, /* to_mourn_inferior */
NULL, /* to_can_run */
NULL, /* to_notice_signals */
+ 0, /* to_stop */
process_stratum, /* to_stratum */
NULL, /* to_next */
1, /* to_has_all_memory */
diff --git a/gdb/remote-mm.c b/gdb/remote-mm.c
index 423ba64353..9b798a8366 100644
--- a/gdb/remote-mm.c
+++ b/gdb/remote-mm.c
@@ -1605,6 +1605,7 @@ struct target_ops mm_ops = {
mm_mourn, /* mourn_inferior FIXME */
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum, 0, /* next */
1, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */
0,0, /* sections, sections_end */
diff --git a/gdb/remote-mon.c b/gdb/remote-mon.c
index a120ab8297..b7dabcabda 100644
--- a/gdb/remote-mon.c
+++ b/gdb/remote-mon.c
@@ -1032,6 +1032,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).",
monitor_mourn_inferior,
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum,
0, /* next */
1,
@@ -1074,6 +1075,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).",
monitor_mourn_inferior,
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum,
0, /* next */
1,
@@ -1116,6 +1118,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).",
monitor_mourn_inferior,
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum,
0, /* next */
1,
diff --git a/gdb/remote-nindy.c b/gdb/remote-nindy.c
index a85caf0772..0c2c98cc4e 100644
--- a/gdb/remote-nindy.c
+++ b/gdb/remote-nindy.c
@@ -747,6 +747,7 @@ specified when you started GDB.",
nindy_mourn_inferior,
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum, 0, /* next */
1, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */
0, 0, /* Section pointers */
diff --git a/gdb/remote-os9k.c b/gdb/remote-os9k.c
index a3f67745aa..f1aaaf88fb 100644
--- a/gdb/remote-os9k.c
+++ b/gdb/remote-os9k.c
@@ -1158,6 +1158,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).",
rombug_mourn_inferior,
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum,
0, /* next */
1,
diff --git a/gdb/remote-pa.c b/gdb/remote-pa.c
index 91988f8913..6d5f0796e8 100644
--- a/gdb/remote-pa.c
+++ b/gdb/remote-pa.c
@@ -1520,6 +1520,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya) or telnet port.",
remote_mourn, /* to_mourn_inferior */
0, /* to_can_run */
0, /* to_notice_signals */
+ 0, /* to_stop */
process_stratum, /* to_stratum */
NULL, /* to_next */
1, /* to_has_all_memory */
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c
index 8b3c4d3b74..48de0812fb 100644
--- a/gdb/remote-sim.c
+++ b/gdb/remote-sim.c
@@ -419,6 +419,7 @@ struct target_ops gdbsim_ops =
gdbsim_mourn_inferior, /* mourn_inferior */
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum, 0, /* next */
1, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */
0, 0, /* Section pointers */
diff --git a/gdb/remote-st.c b/gdb/remote-st.c
index 402a4ab1e5..8bec2f5dc0 100644
--- a/gdb/remote-st.c
+++ b/gdb/remote-st.c
@@ -809,6 +809,7 @@ the speed to connect at in bits per second.",
st2000_mourn_inferior,
0, /* can_run */
0, /* notice_signals */
+ 0, /* to_stop */
process_stratum,
0, /* next */
1,
OpenPOWER on IntegriCloud