On 8/2/24 02:59, Ilya Leoshkevich wrote:
diff --git a/linux-user/qemu.h b/linux-user/qemu.h
index a2961f503f4..85ba5a53869 100644
--- a/linux-user/qemu.h
+++ b/linux-user/qemu.h
@@ -159,6 +159,11 @@ struct TaskState {
/* Start time of task after system boot in clock ticks */
uint64_t start_boottime;
+
+#if defined(TARGET_I386)
+ /* Last syscall number. */
+ target_ulong orig_ax;
+#endif
Maybe place this higher, in the existing TARGET_I386 block?
Otherwise,
Reviewed-by: Richard Henderson <richard.hender...@linaro.org>
r~