diff options
Diffstat (limited to 'gdbstub')
-rw-r--r-- | gdbstub/user.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdbstub/user.c b/gdbstub/user.c index 63edca131a..2ba01c17fa 100644 --- a/gdbstub/user.c +++ b/gdbstub/user.c @@ -502,3 +502,11 @@ void gdb_syscall_handling(const char *syscall_packet) gdb_put_packet(syscall_packet); gdb_handlesig(gdbserver_state.c_cpu, 0); } + +void gdb_syscall_entry(CPUState *cs, int num) +{ +} + +void gdb_syscall_return(CPUState *cs, int num) +{ +} |