diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-08-11 23:12:02 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-08-11 23:12:02 +0000 |
commit | ae87844d7b1bab4184590aa40fcf6b4ff59cdf75 (patch) | |
tree | 1e2d4e89aaf8ec4c02da198c9cf1c8aaa587a7fb /gdb/remote-monitor.c | |
parent | ac259c28f0e51fe81bce06bde2ea5657caf12859 (diff) | |
download | gdb-ae87844d7b1bab4184590aa40fcf6b4ff59cdf75.zip gdb-ae87844d7b1bab4184590aa40fcf6b4ff59cdf75.tar.gz gdb-ae87844d7b1bab4184590aa40fcf6b4ff59cdf75.tar.bz2 |
* remote-{monitor,bug}.c: Make bug_ops not static (forward declaration
of statics doesn't work with SunOS4 /bin/cc).
Rename the occurrence in remote-monitor.c to monitor_bug_ops.
Diffstat (limited to 'gdb/remote-monitor.c')
-rw-r--r-- | gdb/remote-monitor.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/remote-monitor.c b/gdb/remote-monitor.c index d6e4f54..d9367a8 100644 --- a/gdb/remote-monitor.c +++ b/gdb/remote-monitor.c @@ -59,7 +59,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ struct monitor_ops *current_monitor; extern struct target_ops rom68k_ops; /* Forward declaration */ extern struct target_ops mon68_ops; /* Forward declaration */ -static struct target_ops bug_ops; /* Forward declaration */ +extern struct target_ops monitor_bug_ops; /* Forward declaration */ extern struct monitor_ops rom68k_cmds; /* Forward declaration */ extern struct monitor_ops mon68_cmds; /* Forward declaration */ extern struct monitor_ops bug_cmds; /* Forward declaration */ @@ -394,7 +394,7 @@ bug_open(args, from_tty) char *args; int from_tty; { - push_target(&bug_ops); + push_target(&monitor_bug_ops); push_monitor (&bug_cmds); general_open (args, "bug", from_tty); @@ -1092,7 +1092,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).", OPS_MAGIC, /* Always the last thing */ }; -static struct target_ops bug_ops = { +struct target_ops monitor_bug_ops = { "bug", "Motorola's BUG remote serial debug monitor", "Use a remote computer running Motorola's BUG debug monitor.\n\ @@ -1205,5 +1205,5 @@ Use <CR>~. or <CR>~^D to break out."); add_target (&rom68k_ops); /* add_target (&mon68_ops); */ - add_target (&bug_ops); + add_target (&monitor_bug_ops); } |