diff options
author | Warner Losh | 2021-10-29 16:25:45 +0200 |
---|---|---|
committer | Warner Losh | 2022-01-08 06:58:51 +0100 |
commit | 4dca396631a10f85065a3c71639f1655a96bcdbe (patch) | |
tree | 82a1dc67401f2a746d5a3721d95b362136d53c69 /bsd-user/i386 | |
parent | bsd-user: create a per-arch signal.c file (diff) | |
download | qemu-4dca396631a10f85065a3c71639f1655a96bcdbe.tar.gz qemu-4dca396631a10f85065a3c71639f1655a96bcdbe.tar.xz qemu-4dca396631a10f85065a3c71639f1655a96bcdbe.zip |
bsd-user/i386/target_arch_signal.h: Remove target_sigcontext
In FreeBSD, sigcontext was retired in favor of ucontext/mcontext.
Remove vestigial target_sigcontext.
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user/i386')
-rw-r--r-- | bsd-user/i386/target_arch_signal.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bsd-user/i386/target_arch_signal.h b/bsd-user/i386/target_arch_signal.h index a90750d602..e262667bda 100644 --- a/bsd-user/i386/target_arch_signal.h +++ b/bsd-user/i386/target_arch_signal.h @@ -27,10 +27,6 @@ #define TARGET_MINSIGSTKSZ (512 * 4) /* min sig stack size */ #define TARGET_SIGSTKSZ (MINSIGSTKSZ + 32768) /* recommended size */ -struct target_sigcontext { - /* to be added */ -}; - typedef struct target_mcontext { } target_mcontext_t; |