Re: [PATCH 11/18] accel/tcg: Unify user implementations of qemu_cpu_kick()

2024-10-05 Thread Richard Henderson
On 9/23/24 09:13, Ilya Leoshkevich wrote: linux-user and bsd-user have the same implementation. Move it to user-exec.c. Signed-off-by: Ilya Leoshkevich --- accel/tcg/user-exec.c | 5 + bsd-user/main.c | 5 - linux-user/main.c | 5 - 3 files changed, 5 insertions(+), 10

[PATCH 11/18] accel/tcg: Unify user implementations of qemu_cpu_kick()

2024-09-23 Thread Ilya Leoshkevich
linux-user and bsd-user have the same implementation. Move it to user-exec.c. Signed-off-by: Ilya Leoshkevich --- accel/tcg/user-exec.c | 5 + bsd-user/main.c | 5 - linux-user/main.c | 5 - 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/accel/tcg/user-exec