diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:39:24 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:14 -0700 |
commit | fab5aa7c3fe5e60c877469a1e4c9c551e343409e (patch) | |
tree | c08e04150822930a416261f08e31dfb199c27cff /gdb/remote.c | |
parent | dbbca37d38772f0f75296b01b757225278eb51fc (diff) | |
download | gdb-fab5aa7c3fe5e60c877469a1e4c9c551e343409e.zip gdb-fab5aa7c3fe5e60c877469a1e4c9c551e343409e.tar.gz gdb-fab5aa7c3fe5e60c877469a1e4c9c551e343409e.tar.bz2 |
Add target_ops argument to to_fileio_readlink
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_fileio_readlink>: Add argument.
* target.c (target_fileio_readlink): Add argument.
* remote.c (remote_hostio_readlink): Add 'self' argument.
* inf-child.c (inf_child_fileio_readlink): Add 'self' argument.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index cf8870e..866c5c0 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -9791,7 +9791,8 @@ remote_hostio_unlink (struct target_ops *self, occurs (and set *REMOTE_ERRNO). */ static char * -remote_hostio_readlink (const char *filename, int *remote_errno) +remote_hostio_readlink (struct target_ops *self, + const char *filename, int *remote_errno) { struct remote_state *rs = get_remote_state (); char *p = rs->buf; |