From 6e68e076e72f42d43cc3b5435751d796c2410a3f Mon Sep 17 00:00:00 2001 From: pbrook Date: Fri, 30 May 2008 17:22:15 +0000 Subject: Move clone() register setup to target specific code. Handle fork-like clone. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4623 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-m68k/cpu.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'target-m68k') diff --git a/target-m68k/cpu.h b/target-m68k/cpu.h index d5c5a10..7691452 100644 --- a/target-m68k/cpu.h +++ b/target-m68k/cpu.h @@ -226,6 +226,15 @@ static inline int cpu_mmu_index (CPUState *env) return (env->sr & SR_S) == 0 ? 1 : 0; } +#if defined(CONFIG_USER_ONLY) +static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) +{ + if (!newsp) + env->aregs[7] = newsp; + env->dregs[0] = 0; +} +#endif + #include "cpu-all.h" #endif -- cgit v1.1