[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 05/11] {linux,bsd}-user: Pass pid to gdbserver_fork()
From: |
Ilya Leoshkevich |
Subject: |
[PATCH v3 05/11] {linux,bsd}-user: Pass pid to gdbserver_fork() |
Date: |
Fri, 16 Feb 2024 14:05:32 +0100 |
The upcoming follow-fork-mode child support requires knowing the child
pid. Pass it down.
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
---
bsd-user/main.c | 2 +-
gdbstub/user.c | 2 +-
include/gdbstub/user.h | 2 +-
linux-user/main.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/bsd-user/main.c b/bsd-user/main.c
index bc233a85cef..e8c658eda5d 100644
--- a/bsd-user/main.c
+++ b/bsd-user/main.c
@@ -131,7 +131,7 @@ void fork_end(abi_long pid)
*/
qemu_init_cpu_list();
((TaskState *)thread_cpu->opaque)->ts_tid = qemu_get_thread_id();
- gdbserver_fork(thread_cpu);
+ gdbserver_fork(pid);
} else {
mmap_fork_end(child);
cpu_list_unlock();
diff --git a/gdbstub/user.c b/gdbstub/user.c
index 5024c670f85..69b9857e5b6 100644
--- a/gdbstub/user.c
+++ b/gdbstub/user.c
@@ -375,7 +375,7 @@ static void disable_gdbstub(void)
}
/* Disable gdb stub for child processes. */
-void gdbserver_fork(CPUState *cpu)
+void gdbserver_fork(pid_t pid)
{
if (!gdbserver_state.init || gdbserver_user_state.fd < 0) {
return;
diff --git a/include/gdbstub/user.h b/include/gdbstub/user.h
index e33f8d9a9a6..66dd0d319cf 100644
--- a/include/gdbstub/user.h
+++ b/include/gdbstub/user.h
@@ -54,7 +54,7 @@ void gdbserver_fork_start(void);
* gdbserver_fork() - disable gdb stub for child processes.
* @cs: CPU
*/
-void gdbserver_fork(CPUState *cs);
+void gdbserver_fork(pid_t pid);
/**
* gdb_syscall_entry() - inform gdb of syscall entry and yield control to it
diff --git a/linux-user/main.c b/linux-user/main.c
index f1a0267816b..ad1c6394520 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -164,7 +164,7 @@ void fork_end(abi_long pid)
}
qemu_init_cpu_list();
((TaskState *)thread_cpu->opaque)->ts_tid = qemu_get_thread_id();
- gdbserver_fork(thread_cpu);
+ gdbserver_fork(pid);
} else {
cpu_list_unlock();
}
--
2.43.0
- [PATCH v3 00/11] gdbstub: Implement follow-fork-mode child, Ilya Leoshkevich, 2024/02/16
- [PATCH v3 01/11] gdbstub: Support disablement in a multi-threaded process, Ilya Leoshkevich, 2024/02/16
- [PATCH v3 03/11] gdbstub: Introduce gdbserver_fork_start(), Ilya Leoshkevich, 2024/02/16
- [PATCH v3 05/11] {linux,bsd}-user: Pass pid to gdbserver_fork(),
Ilya Leoshkevich <=
- [PATCH v3 02/11] {linux,bsd}-user: Update ts_tid after fork(), Ilya Leoshkevich, 2024/02/16
- [PATCH v3 07/11] gdbstub: Introduce gdb_handle_query_supported_user(), Ilya Leoshkevich, 2024/02/16
- [PATCH v3 08/11] gdbstub: Introduce gdb_handle_set_thread_user(), Ilya Leoshkevich, 2024/02/16
- [PATCH v3 04/11] {linux,bsd}-user: Pass pid to fork_end(), Ilya Leoshkevich, 2024/02/16