diff options
Diffstat (limited to 'overlay/mgdb')
-rw-r--r-- | overlay/mgdb/gdb/winnt-nat.c | 7 |
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); |