user.c (505601d5806a5b9a8acde140da5b507bdd03a794) | user.c (c566080cd37fe328077a3c49d7fd248ce2a06bfe) |
---|---|
1/* 2 * gdbstub user-mode helper routines. 3 * 4 * We know for user-mode we are using TCG so we can call stuff directly. 5 * 6 * Copyright (c) 2003-2005 Fabrice Bellard 7 * Copyright (c) 2022 Linaro Ltd 8 * 9 * SPDX-License-Identifier: LGPL-2.0+ 10 */ 11 12#include "qemu/osdep.h" 13#include "qemu/cutils.h" 14#include "qemu/sockets.h" 15#include "exec/hwaddr.h" 16#include "exec/tb-flush.h" 17#include "exec/gdbstub.h" | 1/* 2 * gdbstub user-mode helper routines. 3 * 4 * We know for user-mode we are using TCG so we can call stuff directly. 5 * 6 * Copyright (c) 2003-2005 Fabrice Bellard 7 * Copyright (c) 2022 Linaro Ltd 8 * 9 * SPDX-License-Identifier: LGPL-2.0+ 10 */ 11 12#include "qemu/osdep.h" 13#include "qemu/cutils.h" 14#include "qemu/sockets.h" 15#include "exec/hwaddr.h" 16#include "exec/tb-flush.h" 17#include "exec/gdbstub.h" |
18#include "gdbstub/syscalls.h" |
|
18#include "gdbstub/user.h" 19#include "hw/core/cpu.h" 20#include "trace.h" 21#include "internals.h" 22 23/* User-mode specific state */ 24typedef struct { 25 int fd; --- 448 unchanged lines hidden --- | 19#include "gdbstub/user.h" 20#include "hw/core/cpu.h" 21#include "trace.h" 22#include "internals.h" 23 24/* User-mode specific state */ 25typedef struct { 26 int fd; --- 448 unchanged lines hidden --- |