aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-mips.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2009-03-16 19:38:33 +0000
committerJoel Brobecker <brobecker@gnat.com>2009-03-16 19:38:33 +0000
commit383c0389987560500a6678e734d28cef67d0a4f4 (patch)
tree5a64286120ad2ca44ac2b99ea61a1edd2b0c306b /gdb/remote-mips.c
parent267fbcde30f5a93cff29979aab8f1ddb30d0bf31 (diff)
downloadfsf-binutils-gdb-383c0389987560500a6678e734d28cef67d0a4f4.zip
fsf-binutils-gdb-383c0389987560500a6678e734d28cef67d0a4f4.tar.gz
fsf-binutils-gdb-383c0389987560500a6678e734d28cef67d0a4f4.tar.bz2
* remote-mips.c (mips_mourn_inferior): Add missing ops parameter.
(mips_create_inferior): Likewise.
Diffstat (limited to 'gdb/remote-mips.c')
-rw-r--r--gdb/remote-mips.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c
index 66e8328..348a63c 100644
--- a/gdb/remote-mips.c
+++ b/gdb/remote-mips.c
@@ -102,7 +102,7 @@ static int mips_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len,
static void mips_files_info (struct target_ops *ignore);
-static void mips_mourn_inferior (void);
+static void mips_mourn_inferior (struct target_ops *ops);
static int pmon_makeb64 (unsigned long v, char *p, int n, int *chksum);
@@ -2182,7 +2182,8 @@ Give up (and stop debugging it)? ")))
/* Start running on the target board. */
static void
-mips_create_inferior (char *execfile, char *args, char **env, int from_tty)
+mips_create_inferior (struct target_ops *ops, char *execfile,
+ char *args, char **env, int from_tty)
{
CORE_ADDR entry_pt;
@@ -2209,7 +2210,7 @@ Can't pass arguments to remote MIPS board; arguments ignored.");
/* Clean up after a process. Actually nothing to do. */
static void
-mips_mourn_inferior (void)
+mips_mourn_inferior (struct target_ops *ops)
{
if (current_ops != NULL)
unpush_target (current_ops);