mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
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>
This commit is contained in:
committed by
Alex Bennée
parent
9d456e092d
commit
6604b05763
+1
-1
@@ -165,10 +165,10 @@ void fork_end(pid_t pid)
|
||||
}
|
||||
qemu_init_cpu_list();
|
||||
get_task_state(thread_cpu)->ts_tid = qemu_get_thread_id();
|
||||
gdbserver_fork(thread_cpu, pid);
|
||||
} else {
|
||||
cpu_list_unlock();
|
||||
}
|
||||
gdbserver_fork_end(thread_cpu, pid);
|
||||
/*
|
||||
* qemu_init_cpu_list() reinitialized the child exclusive state, but we
|
||||
* also need to keep current_cpu consistent, so call end_exclusive() for
|
||||
|
||||
Reference in New Issue
Block a user