microblaze: Support setting of TLS ptr
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
b6348f29d0
commit
a5b3bdcba8
@ -6888,6 +6888,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
|
||||
ret = get_errno(do_fork(cpu_env, arg1, arg2, arg3, arg5, arg4));
|
||||
#elif defined(TARGET_CRIS)
|
||||
ret = get_errno(do_fork(cpu_env, arg2, arg1, arg3, arg4, arg5));
|
||||
#elif defined(TARGET_MICROBLAZE)
|
||||
ret = get_errno(do_fork(cpu_env, arg1, arg2, arg4, arg6, arg5));
|
||||
#elif defined(TARGET_S390X)
|
||||
ret = get_errno(do_fork(cpu_env, arg2, arg1, arg3, arg5, arg4));
|
||||
#else
|
||||
|
@ -345,6 +345,7 @@ static inline void cpu_clone_regs(CPUMBState *env, target_ulong newsp)
|
||||
|
||||
static inline void cpu_set_tls(CPUMBState *env, target_ulong newtls)
|
||||
{
|
||||
env->regs[21] = newtls;
|
||||
}
|
||||
|
||||
static inline int cpu_interrupts_enabled(CPUMBState *env)
|
||||
|
Loading…
Reference in New Issue
Block a user