]> git.proxmox.com Git - mirror_qemu.git/commitdiff
MIPS usermode TLS register
authorPaul Brook <paul@codesourcery.com>
Thu, 9 Jul 2009 14:07:57 +0000 (15:07 +0100)
committerPaul Brook <paul@codesourcery.com>
Thu, 9 Jul 2009 14:07:57 +0000 (15:07 +0100)
Implement cpu_set_tls for MIPS.

Signed-off-by: Paul Brook <paul@codesourcery.com>
target-mips/cpu.h

index b415dc43bebd15cd7384b47d353e7c3fc28a262a..6ebb82bccb81fb2d6e67e1b86c0ebb58d03483c0 100644 (file)
@@ -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__) */