diff options
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 3a05bfd..fcddd1c 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -102,11 +102,8 @@ static void remote_files_info (struct target_ops *ignore); static void remote_prepare_to_store (struct target_ops *self, struct regcache *regcache); -static void remote_open (char *name, int from_tty); - -static void extended_remote_open (char *name, int from_tty); - -static void remote_open_1 (char *, int, struct target_ops *, int extended_p); +static void remote_open_1 (const char *, int, struct target_ops *, + int extended_p); static void remote_close (struct target_ops *self); @@ -3619,7 +3616,7 @@ remote_start_remote (int from_tty, struct target_ops *target, int extended_p) NAME is the filename used for communication. */ static void -remote_open (char *name, int from_tty) +remote_open (const char *name, int from_tty) { remote_open_1 (name, from_tty, &remote_ops, 0); } @@ -3628,7 +3625,7 @@ remote_open (char *name, int from_tty) remote gdb protocol. NAME is the filename used for communication. */ static void -extended_remote_open (char *name, int from_tty) +extended_remote_open (const char *name, int from_tty) { remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */); } @@ -4128,7 +4125,7 @@ remote_unpush_target (void) } static void -remote_open_1 (char *name, int from_tty, +remote_open_1 (const char *name, int from_tty, struct target_ops *target, int extended_p) { struct remote_state *rs = get_remote_state (); |