summary refs log tree commit diff stats
path: root/include/gdbstub/user.h
diff options
context:
space:
mode:
authorIlya Leoshkevich <iii@linux.ibm.com>2024-03-05 12:09:44 +0000
committerAlex Bennée <alex.bennee@linaro.org>2024-03-06 12:35:19 +0000
commit6604b05763515f6329bf508ff1284651ebffc33e (patch)
treeeb55af54f5df76ba3f639394b5d68969eda949a1 /include/gdbstub/user.h
parent9d456e092da670324f37f269d29300eedb915c3b (diff)
downloadfocaccia-qemu-6604b05763515f6329bf508ff1284651ebffc33e.tar.gz
focaccia-qemu-6604b05763515f6329bf508ff1284651ebffc33e.zip
gdbstub: Call gdbserver_fork() both in parent and in child
The upcoming follow-fork-mode child support requires post-fork message
exchange between the parent and the child. Prepare gdbserver_fork() for
this purpose. Rename it to gdbserver_fork_end() to better reflect its
purpose.

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Message-Id: <20240219141628.246823-8-iii@linux.ibm.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240305121005.3528075-9-alex.bennee@linaro.org>
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 3f9f45946e..4c4e5c4c58 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