2005-04-17 23:16:13 +04:00
|
|
|
#ifndef GDBSTUB_H
|
|
|
|
#define GDBSTUB_H
|
|
|
|
|
|
|
|
#define DEFAULT_GDBSTUB_PORT 1234
|
|
|
|
|
|
|
|
#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
|
|
|
#endif
|
|
|
|
int gdbserver_start(int);
|
|
|
|
|
|
|
|
#endif
|