summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-09-08 00:37:14 +0000
committermidipix <writeonce@midipix.org>2019-09-08 01:49:33 +0000
commit849b7ceb160a1b302be37dbb3e646a9de0075e2a (patch)
tree48974b49b333acd93658f8505fe7194c499823d9
parenta3adb19a230ae4d8f6bf8be117d0eda8668f26d1 (diff)
downloadchainport-849b7ceb160a1b302be37dbb3e646a9de0075e2a.tar.bz2
chainport-849b7ceb160a1b302be37dbb3e646a9de0075e2a.tar.xz
mgdb: added winnt_interrupt() as stub.
-rw-r--r--overlay/mgdb/gdb/winnt-nat.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/overlay/mgdb/gdb/winnt-nat.c b/overlay/mgdb/gdb/winnt-nat.c
index 4f8ffa7..30f04f9 100644
--- a/overlay/mgdb/gdb/winnt-nat.c
+++ b/overlay/mgdb/gdb/winnt-nat.c
@@ -153,6 +153,12 @@ static int winnt_thread_alive (struct target_ops * t, ptid_t ptid)
return true;
}
+static void winnt_interrupt (struct target_ops * t, ptid_t ptid)
+{
+ (void)t;
+ (void)ptid;
+}
+
static void winnt_files_info (struct target_ops * t)
{
(void)t;
@@ -518,6 +524,7 @@ static target_ops * winnt_target_alloc (void)
t->to_files_info = winnt_files_info;
t->to_thread_alive = winnt_thread_alive;
+ t->to_interrupt = winnt_interrupt;
x86_use_watchpoints(t);