summaryrefslogtreecommitdiff
path: root/overlay/mgdb/gdb/winnt-nat.c
diff options
context:
space:
mode:
Diffstat (limited to 'overlay/mgdb/gdb/winnt-nat.c')
-rw-r--r--overlay/mgdb/gdb/winnt-nat.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/overlay/mgdb/gdb/winnt-nat.c b/overlay/mgdb/gdb/winnt-nat.c
index 154aa43..bd49897 100644
--- a/overlay/mgdb/gdb/winnt-nat.c
+++ b/overlay/mgdb/gdb/winnt-nat.c
@@ -145,6 +145,11 @@ static enum target_xfer_status winnt_xfer_partial(
return TARGET_XFER_E_IO;
}
+static void winnt_files_info (struct target_ops * t)
+{
+ (void)t;
+}
+
static nfds_t winnt_poll_one_init (struct pollfd * pfds, pid_t pid)
{
winnt_process * pdbg;
@@ -502,6 +507,7 @@ static target_ops * winnt_target_alloc (void)
t->to_pid_to_exec_file = winnt_pid_to_exec_file;
t->to_xfer_partial = winnt_xfer_partial;
+ t->to_files_info = winnt_files_info;
x86_use_watchpoints(t);