aboutsummaryrefslogtreecommitdiff
path: root/bsd-user/x86_64
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2022-01-30 12:01:35 -0700
committerWarner Losh <imp@bsdimp.com>2022-02-26 10:01:38 -0700
commit0724067284fad14e23ce5286f3b9cb6e4e16d1a7 (patch)
tree952c22e7a2fd40ca5549a3fb881aee398b15c650 /bsd-user/x86_64
parentf1f22450e2bce1d3ca91f8e2c2514da7bff37fdd (diff)
downloadqemu-0724067284fad14e23ce5286f3b9cb6e4e16d1a7.zip
qemu-0724067284fad14e23ce5286f3b9cb6e4e16d1a7.tar.gz
qemu-0724067284fad14e23ce5286f3b9cb6e4e16d1a7.tar.bz2
bsd-user/x86_64/target_arch_thread.h: Assume a FreeBSD target
Since we can't run on anything else, assume for the moment that this is a FreeBSD target. In the future, we'll need to handle this properly via some include file in bsd-user/*bsd/x86_64/mumble.h. There's a number of other diffs that would be needed to make things work on OtherBSD, so it doesn't make sense to preseve this one detail today. Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Kyle Evans <kevans@FreeBSD.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user/x86_64')
-rw-r--r--bsd-user/x86_64/target_arch_thread.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/bsd-user/x86_64/target_arch_thread.h b/bsd-user/x86_64/target_arch_thread.h
index d105e43..b745d7f 100644
--- a/bsd-user/x86_64/target_arch_thread.h
+++ b/bsd-user/x86_64/target_arch_thread.h
@@ -32,9 +32,7 @@ static inline void target_thread_init(struct target_pt_regs *regs,
regs->rax = 0;
regs->rsp = infop->start_stack;
regs->rip = infop->entry;
- if (bsd_type == target_freebsd) {
- regs->rdi = infop->start_stack;
- }
+ regs->rdi = infop->start_stack;
}
#endif /* !_TARGET_ARCH_THREAD_H_ */