aboutsummaryrefslogtreecommitdiff
path: root/gdbserver/hostio.cc
diff options
context:
space:
mode:
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2020-02-17 16:11:56 +0100
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2020-02-20 17:35:09 +0100
commitea06bbaaaa975331a42f2054551e78f588020462 (patch)
tree91b39b2e32a82b8ad8ca70195c48a6a9ad27787f /gdbserver/hostio.cc
parent6e3fd7e948d158a04c0af7130e6648ad75aaba66 (diff)
downloadgdb-ea06bbaaaa975331a42f2054551e78f588020462.zip
gdb-ea06bbaaaa975331a42f2054551e78f588020462.tar.gz
gdb-ea06bbaaaa975331a42f2054551e78f588020462.tar.bz2
gdbserver: turn target op 'hostio_last_error' into a method
gdbserver/ChangeLog: 2020-02-20 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> Turn process_stratum_target's hostio_last_error op into a method of process_target. * target.h (struct process_stratum_target): Remove the target op. (class process_target): Add the target op. * target.cc: Add "hostio.h" to includes. (process_target::hostio_last_error): Define. Update the derived classes and callers below. * hostio.cc (hostio_error): Update. * linux-low.cc: Remove "hostio.h" from includes. (linux_target_ops): Update. * lynx-low.cc (lynx_target_ops): Update. * nto-low.cc (nto_target_ops): Update. * win32-low.h (class win32_process_target): Update. * win32-low.cc (win32_target_ops): Update. (wince_hostio_last_error): Turn into ... (win32_process_target::hostio_last_error): ... this.
Diffstat (limited to 'gdbserver/hostio.cc')
-rw-r--r--gdbserver/hostio.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbserver/hostio.cc b/gdbserver/hostio.cc
index 8af4fbf..a3b32cd 100644
--- a/gdbserver/hostio.cc
+++ b/gdbserver/hostio.cc
@@ -196,7 +196,7 @@ require_valid_fd (int fd)
static void
hostio_error (char *own_buf)
{
- the_target->hostio_last_error (own_buf);
+ the_target->pt->hostio_last_error (own_buf);
}
static void