repo.or.cz
/
qemu
/
mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use 3-argument open call when creating file.
[qemu/mini2440.git]
/
gdbstub.h
blob
7b42596f1524d6ad032040ed0b22876dc1052929
1
#ifndef GDBSTUB_H
2
#define GDBSTUB_H
3
4
#define DEFAULT_GDBSTUB_PORT 1234
5
6
#ifdef CONFIG_USER_ONLY
7
int
gdb_handlesig
(
CPUState
*,
int
);
8
void
gdb_exit
(
CPUState
*,
int
);
9
#endif
10
int
gdbserver_start
(
int
);
11
12
#endif