summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2021-10-29 09:07:59 -0600
committerWarner Losh <imp@bsdimp.com>2022-01-07 22:58:51 -0700
commitc504713f34fb127179496ba3e680689d38e29764 (patch)
treeb1528ce7f260b4a93ba9b39321fb196634c54ed0
parent4dca396631a10f85065a3c71639f1655a96bcdbe (diff)
downloadfocaccia-qemu-c504713f34fb127179496ba3e680689d38e29764.tar.gz
focaccia-qemu-c504713f34fb127179496ba3e680689d38e29764.zip
bsd-user/i386/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>
-rw-r--r--bsd-user/i386/target_arch_signal.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/bsd-user/i386/target_arch_signal.h b/bsd-user/i386/target_arch_signal.h
index e262667bda..bf7263c4f8 100644
--- a/bsd-user/i386/target_arch_signal.h
+++ b/bsd-user/i386/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;