summaryrefslogtreecommitdiff
path: root/overlay/mgdb/gdb/i386-winnt-regcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'overlay/mgdb/gdb/i386-winnt-regcache.c')
-rw-r--r--overlay/mgdb/gdb/i386-winnt-regcache.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/overlay/mgdb/gdb/i386-winnt-regcache.c b/overlay/mgdb/gdb/i386-winnt-regcache.c
new file mode 100644
index 0000000..1c2fb3e
--- /dev/null
+++ b/overlay/mgdb/gdb/i386-winnt-regcache.c
@@ -0,0 +1,22 @@
+/***************************************************************/
+/* mgdb: midipix-specific bits for gdb */
+/* Copyright (C) 2019 Z. Gilboa */
+/* Released under GPLv2 and GPLv3; see COPYING.MGDB. */
+/***************************************************************/
+
+#include "defs.h"
+#include "osabi.h"
+#include "frame-unwind.h"
+#include "i386-tdep.h"
+
+struct regcache;
+
+void i386_winnt_fetch_registers(
+ int pfd, struct regcache * rcache,
+ int regnum, pid_t tid)
+{
+ (void)pfd;
+ (void)rcache;
+ (void)regnum;
+ (void)tid;
+}