blob: d3745a1b81a931e619294190ec539bc6c0417706 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/***************************************************************/
/* 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"
#include "winnt-nat.h"
struct regcache;
void i386_winnt_fetch_registers(
struct regcache * rcache, int regnum,
struct winnt_thread * thread)
{
(void)rcache;
(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;
}
|