summaryrefslogtreecommitdiff
path: root/overlay/mgdb/gdb/i386-winnt-regcache.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-09-15 19:12:33 +0000
committermidipix <writeonce@midipix.org>2019-09-16 07:07:34 +0000
commit0354669846be9be0d0353a6aa83297a1021c910d (patch)
tree0ed25c575bc3f8cf24cb4722565cf03d293ed5d4 /overlay/mgdb/gdb/i386-winnt-regcache.c
parentb3b28e32623963e72eee2849dca3b57b0cc215f8 (diff)
downloadchainport-0354669846be9be0d0353a6aa83297a1021c910d.tar.bz2
chainport-0354669846be9be0d0353a6aa83297a1021c910d.tar.xz
mgdb: struct winnt_thread and friends: initial implementation and integration.
Diffstat (limited to 'overlay/mgdb/gdb/i386-winnt-regcache.c')
-rw-r--r--overlay/mgdb/gdb/i386-winnt-regcache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/overlay/mgdb/gdb/i386-winnt-regcache.c b/overlay/mgdb/gdb/i386-winnt-regcache.c
index 1c2fb3e..7941fd3 100644
--- a/overlay/mgdb/gdb/i386-winnt-regcache.c
+++ b/overlay/mgdb/gdb/i386-winnt-regcache.c
@@ -8,15 +8,15 @@
#include "osabi.h"
#include "frame-unwind.h"
#include "i386-tdep.h"
+#include "winnt-nat.h"
struct regcache;
void i386_winnt_fetch_registers(
- int pfd, struct regcache * rcache,
- int regnum, pid_t tid)
+ struct regcache * rcache, int regnum,
+ struct winnt_thread * thread)
{
- (void)pfd;
(void)rcache;
(void)regnum;
- (void)tid;
+ (void)thread;
}