diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-15 07:43:43 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-15 07:43:43 +0000 |
commit | 0b6d3ae0723ba226cf07c549a948d4680fb7923b (patch) | |
tree | db0aa91f8a589bbd69aaecdd951a357daaf591cd /target-sh4 | |
parent | 7478757e1f6745803edb9aedb6571ad9b4197a38 (diff) |
qemu sh4 nptl support
(Michael Trimarchi)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5223 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4')
-rw-r--r-- | target-sh4/cpu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-sh4/cpu.h b/target-sh4/cpu.h index 686b6684d2..2f42e6015d 100644 --- a/target-sh4/cpu.h +++ b/target-sh4/cpu.h @@ -141,6 +141,11 @@ void sh4_cpu_list(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...)); void cpu_sh4_write_mmaped_utlb_addr(CPUSH4State *s, target_phys_addr_t addr, uint32_t mem_value); +static inline void cpu_set_tls(CPUSH4State *env, target_ulong newtls) +{ + env->gbr = newtls; +} + #include "softfloat.h" #define CPUState CPUSH4State |