From 2f659535667d88cac04fe8366bf2561508f61351 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 8 Sep 2019 00:13:19 +0000 Subject: mgdb: added winnt_files_info() as stub. --- overlay/mgdb/gdb/winnt-nat.c | 6 ++++++ 1 file changed, 6 insertions(+) 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); -- cgit v1.2.3