gdbstub.h

来自「qemu性能直逼VMware的仿真器QEMU 的模擬速度約為實機的 25%;約為」· C头文件 代码 · 共 21 行

H
21
字号
#ifndef GDBSTUB_H#define GDBSTUB_H#define DEFAULT_GDBSTUB_PORT 1234typedef void (*gdb_syscall_complete_cb)(CPUState *env,                                        target_ulong ret, target_ulong err);void gdb_do_syscall(gdb_syscall_complete_cb cb, char *fmt, ...);int use_gdb_syscalls(void);#ifdef CONFIG_USER_ONLYint gdb_handlesig (CPUState *, int);void gdb_exit(CPUState *, int);int gdbserver_start(int);#elseint gdbserver_start(CharDriverState *chr);int gdbserver_start_port(int port);#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?