diff options
author | Warner Losh <imp@bsdimp.com> | 2021-10-29 09:07:02 -0600 |
---|---|---|
committer | Warner Losh <imp@bsdimp.com> | 2022-01-07 22:58:51 -0700 |
commit | c104b7505b890cfbd4af3fc8b891b779496ba274 (patch) | |
tree | 564d0720f59e32e74eb8d44fea8ee66bcaaae524 /bsd-user/x86_64 | |
parent | fc1fc2c78e5d1f60faa50e75ecc7b8aefca322c3 (diff) | |
download | qemu-c104b7505b890cfbd4af3fc8b891b779496ba274.zip qemu-c104b7505b890cfbd4af3fc8b891b779496ba274.tar.gz qemu-c104b7505b890cfbd4af3fc8b891b779496ba274.tar.bz2 |
bsd-user/x86_64/target_arch_signal.h: use new target_os_ucontext.h
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user/x86_64')
-rw-r--r-- | bsd-user/x86_64/target_arch_signal.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/bsd-user/x86_64/target_arch_signal.h b/bsd-user/x86_64/target_arch_signal.h index 55f742b..e84aff9 100644 --- a/bsd-user/x86_64/target_arch_signal.h +++ b/bsd-user/x86_64/target_arch_signal.h @@ -30,14 +30,7 @@ typedef struct target_mcontext { } target_mcontext_t; -typedef struct target_ucontext { - target_sigset_t uc_sigmask; - target_mcontext_t uc_mcontext; - abi_ulong uc_link; - target_stack_t uc_stack; - int32_t uc_flags; - int32_t __spare__[4]; -} target_ucontext_t; +#include "target_os_ucontext.h" struct target_sigframe { abi_ulong sf_signum; |