]> git.proxmox.com Git - qemu.git/blame - gdbstub.h
Use standard character device interface for gdbstub.
[qemu.git] / gdbstub.h
CommitLineData
1fddef4b
FB
1#ifndef GDBSTUB_H
2#define GDBSTUB_H
3
4#define DEFAULT_GDBSTUB_PORT 1234
5
6#ifdef CONFIG_USER_ONLY
7int gdb_handlesig (CPUState *, int);
e9009676 8void gdb_exit(CPUState *, int);
1fddef4b 9int gdbserver_start(int);
4046d913
PB
10#else
11int gdbserver_start(CharDriverState *chr);
12#endif
1fddef4b
FB
13
14#endif