diff options
author | Andreas Färber <afaerber@suse.de> | 2013-06-27 19:49:31 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-07-23 02:41:33 +0200 |
commit | db6b81d43693cec86d62df79dd7402fc045427ed (patch) | |
tree | d2286c4067367ec1e064c3fb28d7d73be01adb7f /include/exec/gdbstub.h | |
parent | 9e0c5422cfbed78990e2edc9d68928647829f5ac (diff) | |
download | hqemu-db6b81d43693cec86d62df79dd7402fc045427ed.zip hqemu-db6b81d43693cec86d62df79dd7402fc045427ed.tar.gz |
gdbstub: Change gdb_handlesig() argument to CPUState
Prepares for changing GDBState::c_cpu to CPUState.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'include/exec/gdbstub.h')
-rw-r--r-- | include/exec/gdbstub.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/gdbstub.h b/include/exec/gdbstub.h index de0f4fb..0f1ad9a 100644 --- a/include/exec/gdbstub.h +++ b/include/exec/gdbstub.h @@ -20,7 +20,7 @@ void gdb_set_stop_cpu(CPUState *cpu); void gdb_exit(CPUArchState *, int); #ifdef CONFIG_USER_ONLY int gdb_queuesig (void); -int gdb_handlesig (CPUArchState *, int); +int gdb_handlesig(CPUState *, int); void gdb_signalled(CPUArchState *, int); void gdbserver_fork(CPUArchState *); #endif |