diff options
author | Warner Losh | 2021-11-04 23:34:48 +0100 |
---|---|---|
committer | Warner Losh | 2022-01-08 06:58:51 +0100 |
commit | 19bf129f8245a0f53130cb368ef616a0c362b8f4 (patch) | |
tree | 6f17301ddac65bb7b18e44f2e4913f36d24d122a /bsd-user/i386 | |
parent | bsd-user/freebsd: Create common target_os_ucontext.h file (diff) | |
download | qemu-19bf129f8245a0f53130cb368ef616a0c362b8f4.tar.gz qemu-19bf129f8245a0f53130cb368ef616a0c362b8f4.tar.xz qemu-19bf129f8245a0f53130cb368ef616a0c362b8f4.zip |
bsd-user: create a per-arch signal.c file
Create a place-holder signal.c file for each of the architectures that
are currently built. In the future, some code that's currently inlined
in target_arch_signal.h will live here.
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/signal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bsd-user/i386/signal.c b/bsd-user/i386/signal.c new file mode 100644 index 0000000000..ac90323365 --- /dev/null +++ b/bsd-user/i386/signal.c @@ -0,0 +1 @@ +/* Placeholder for signal.c */ |