2005-04-17 21:16:13 +02:00
|
|
|
#ifndef GDBSTUB_H
|
|
|
|
#define GDBSTUB_H
|
|
|
|
|
2007-02-22 02:48:01 +01:00
|
|
|
#define DEFAULT_GDBSTUB_PORT "1234"
|
2005-04-17 21:16:13 +02:00
|
|
|
|
2007-01-28 04:10:55 +01:00
|
|
|
typedef 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);
|
2005-04-17 21:16:13 +02:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
int gdb_handlesig (CPUState *, int);
|
2005-04-26 22:42:36 +02:00
|
|
|
void gdb_exit(CPUState *, int);
|
2005-04-17 21:16:13 +02:00
|
|
|
int gdbserver_start(int);
|
2007-01-28 02:53:16 +01:00
|
|
|
#else
|
2007-02-22 02:48:01 +01:00
|
|
|
int gdbserver_start(const char *port);
|
2007-01-28 02:53:16 +01:00
|
|
|
#endif
|
2005-04-17 21:16:13 +02:00
|
|
|
|
|
|
|
#endif
|