From ff867ddcbd55af7becd2328a454e0158018fb50e Mon Sep 17 00:00:00 2001 From: Paul Brook Date: Thu, 9 Jul 2009 15:07:57 +0100 Subject: MIPS usermode TLS register Implement cpu_set_tls for MIPS. Signed-off-by: Paul Brook --- target-mips/cpu.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'target-mips') diff --git a/target-mips/cpu.h b/target-mips/cpu.h index b415dc43b..6ebb82bcc 100644 --- a/target-mips/cpu.h +++ b/target-mips/cpu.h @@ -597,4 +597,9 @@ static inline void cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc, *flags = env->hflags & (MIPS_HFLAG_TMASK | MIPS_HFLAG_BMASK); } +static inline void cpu_set_tls(CPUState *env, target_ulong newtls) +{ + env->tls_value = newtls; +} + #endif /* !defined (__MIPS_CPU_H__) */ -- cgit v1.2.3-65-gdbad