summaryrefslogtreecommitdiff
path: root/overlay/mgdb/gdb/i386-winnt-regcache.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-09-16 06:36:16 +0000
committermidipix <writeonce@midipix.org>2019-09-16 07:07:35 +0000
commitf65c6aec2523148f2a1f4c144872f6f91047ef2c (patch)
tree47a6c8643bbe57e83ffe3aaf3c48de72aae27a3e /overlay/mgdb/gdb/i386-winnt-regcache.c
parentee264353d0e1d9c9627272de6b5f5df5ab1ed808 (diff)
downloadchainport-f65c6aec2523148f2a1f4c144872f6f91047ef2c.tar.bz2
chainport-f65c6aec2523148f2a1f4c144872f6f91047ef2c.tar.xz
mgdb: {amd64|i386}_winnt_store_registers(): initial implementation.
Diffstat (limited to 'overlay/mgdb/gdb/i386-winnt-regcache.c')
-rw-r--r--overlay/mgdb/gdb/i386-winnt-regcache.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/overlay/mgdb/gdb/i386-winnt-regcache.c b/overlay/mgdb/gdb/i386-winnt-regcache.c
index 7941fd3..d3745a1 100644
--- a/overlay/mgdb/gdb/i386-winnt-regcache.c
+++ b/overlay/mgdb/gdb/i386-winnt-regcache.c
@@ -20,3 +20,13 @@ void i386_winnt_fetch_registers(
(void)regnum;
(void)thread;
}
+
+void i386_winnt_store_registers(
+ const struct regcache * rcache,
+ int regnum,
+ struct winnt_thread * thread)
+{
+ (void)rcache;
+ (void)regnum;
+ (void)thread;
+}