aboutsummaryrefslogtreecommitdiff
path: root/include/gdbstub/user.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gdbstub/user.h')
-rw-r--r--include/gdbstub/user.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/gdbstub/user.h b/include/gdbstub/user.h
index 3f9f459..4c4e5c4 100644
--- a/include/gdbstub/user.h
+++ b/include/gdbstub/user.h
@@ -51,10 +51,11 @@ void gdb_signalled(CPUArchState *as, int sig);
void gdbserver_fork_start(void);
/**
- * gdbserver_fork() - disable gdb stub for child processes.
+ * gdbserver_fork_end() - inform gdb of the completed fork()
* @cs: CPU
+ * @pid: 0 if in child process, -1 if fork failed, child process pid otherwise
*/
-void gdbserver_fork(CPUState *cs, pid_t pid);
+void gdbserver_fork_end(CPUState *cs, pid_t pid);
/**
* gdb_syscall_entry() - inform gdb of syscall entry and yield control to it