blob: d0e925a64682398f18a004e9f24e90a7ad333a22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef GDB_SERVER_H
#define GDB_SERVER_H
void GdbStartServer(void);
void GdbStopServer(void);
void GdbServerProcessDebug(void);
void GdbServerVSync(void);
int GdbServerRunning(void);
#endif /* GDB_SERVER_H */
|