File: gdbstub.h

package info (click to toggle)
xen-3.0 3.0.3-0-4
  • links: PTS
  • area: main
  • in suites: etch
  • size: 31,800 kB
  • ctags: 70,362
  • sloc: ansic: 417,153; python: 28,855; asm: 23,888; sh: 5,542; makefile: 4,830; objc: 613; perl: 372; xml: 351
file content (12 lines) | stat: -rw-r--r-- 206 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef GDBSTUB_H
#define GDBSTUB_H

#define DEFAULT_GDBSTUB_PORT 1234

#ifdef CONFIG_USER_ONLY
int gdb_handlesig (CPUState *, int);
void gdb_exit(CPUState *, int);
#endif
int gdbserver_start(int);

#endif