gdbstub.c (dd2f7e29) gdbstub.c (5a534314)
1/*
2 * ARM gdb server stub
3 *
4 * Copyright (c) 2003-2005 Fabrice Bellard
5 * Copyright (c) 2013 SUSE LINUX Products GmbH
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public

--- 9 unchanged lines hidden (view full) ---

18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 */
20#include "qemu/osdep.h"
21#include "cpu.h"
22#include "exec/gdbstub.h"
23#include "gdbstub/helpers.h"
24#include "sysemu/tcg.h"
25#include "internals.h"
1/*
2 * ARM gdb server stub
3 *
4 * Copyright (c) 2003-2005 Fabrice Bellard
5 * Copyright (c) 2013 SUSE LINUX Products GmbH
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public

--- 9 unchanged lines hidden (view full) ---

18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 */
20#include "qemu/osdep.h"
21#include "cpu.h"
22#include "exec/gdbstub.h"
23#include "gdbstub/helpers.h"
24#include "sysemu/tcg.h"
25#include "internals.h"
26#include "cpu-features.h"
26#include "cpregs.h"
27
28typedef struct RegisterSysregXmlParam {
29 CPUState *cs;
30 GString *s;
31 int n;
32} RegisterSysregXmlParam;
33

--- 521 unchanged lines hidden ---
27#include "cpregs.h"
28
29typedef struct RegisterSysregXmlParam {
30 CPUState *cs;
31 GString *s;
32 int n;
33} RegisterSysregXmlParam;
34

--- 521 unchanged lines hidden ---