]> Git Repo - qemu.git/blob - gdbstub/internals.h
works with less than base ISA qemu-system-riscv32 -M virt -bios none -kernel output...
[qemu.git] / gdbstub / internals.h
1 /*
2  * gdbstub internals
3  *
4  * Copyright (c) 2022 Linaro Ltd
5  *
6  * SPDX-License-Identifier: GPL-2.0-or-later
7  */
8
9 #ifndef _INTERNALS_H_
10 #define _INTERNALS_H_
11
12 bool gdb_supports_guest_debug(void);
13 int gdb_breakpoint_insert(CPUState *cs, int type, hwaddr addr, hwaddr len);
14 int gdb_breakpoint_remove(CPUState *cs, int type, hwaddr addr, hwaddr len);
15 void gdb_breakpoint_remove_all(CPUState *cs);
16
17 #endif /* _INTERNALS_H_ */
This page took 0.025555 seconds and 4 git commands to generate.