2005-04-17 23:16:13 +04:00
|
|
|
#ifndef GDBSTUB_H
|
|
|
|
#define GDBSTUB_H
|
|
|
|
|
2007-02-22 04:48:01 +03:00
|
|
|
#define DEFAULT_GDBSTUB_PORT "1234"
|
2005-04-17 23:16:13 +04:00
|
|
|
|
2007-01-28 06:10:55 +03:00
|
|
|
typedef void (*gdb_syscall_complete_cb)(CPUState *env,
|
|
|
|
target_ulong ret, target_ulong err);
|
|
|
|
|
2008-09-14 10:45:34 +04:00
|
|
|
void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...);
|
2007-01-28 06:10:55 +03:00
|
|
|
int use_gdb_syscalls(void);
|
2005-04-17 23:16:13 +04:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
int gdb_handlesig (CPUState *, int);
|
2005-04-27 00:42:36 +04:00
|
|
|
void gdb_exit(CPUState *, int);
|
2005-04-17 23:16:13 +04:00
|
|
|
int gdbserver_start(int);
|
2007-01-28 04:53:16 +03:00
|
|
|
#else
|
2007-02-22 04:48:01 +03:00
|
|
|
int gdbserver_start(const char *port);
|
2007-01-28 04:53:16 +03:00
|
|
|
#endif
|
2008-10-11 21:55:29 +04:00
|
|
|
/* Get or set a register. Returns the size of the register. */
|
|
|
|
typedef int (*gdb_reg_cb)(CPUState *env, uint8_t *buf, int reg);
|
|
|
|
void gdb_register_coprocessor(CPUState *env,
|
|
|
|
gdb_reg_cb get_reg, gdb_reg_cb set_reg,
|
|
|
|
int num_regs, const char *xml, int g_pos);
|
2005-04-17 23:16:13 +04:00
|
|
|
|
|
|
|
#endif
|