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