12 lines
174 B
C
12 lines
174 B
C
|
#ifndef GDBSTUB_H
|
||
|
#define GDBSTUB_H
|
||
|
|
||
|
#define DEFAULT_GDBSTUB_PORT 1234
|
||
|
|
||
|
#ifdef CONFIG_USER_ONLY
|
||
|
int gdb_handlesig (CPUState *, int);
|
||
|
#endif
|
||
|
int gdbserver_start(int);
|
||
|
|
||
|
#endif
|