diff options
author | midipix <writeonce@midipix.org> | 2019-09-08 00:13:19 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-09-08 01:49:33 +0000 |
commit | 2f659535667d88cac04fe8366bf2561508f61351 (patch) | |
tree | c942593b95e212483c1ad0d47d39efc04e6a64dd /overlay/mgdb/gdb | |
parent | 27d6d1aa64c24954675050cbde9071acfe8c323a (diff) | |
download | chainport-2f659535667d88cac04fe8366bf2561508f61351.tar.bz2 chainport-2f659535667d88cac04fe8366bf2561508f61351.tar.xz |
mgdb: added winnt_files_info() as stub.
Diffstat (limited to 'overlay/mgdb/gdb')
-rw-r--r-- | overlay/mgdb/gdb/winnt-nat.c | 6 |
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); |