Skip to content
Snippets Groups Projects
Commit 1366ef81 authored by Warner Losh's avatar Warner Losh
Browse files

bsd-user/signal.c: implement abstract target / host signal translation


Implement host_to_target_signal and target_to_host_signal.

Signed-off-by: default avatarStacey Son <sson@FreeBSD.org>
Signed-off-by: default avatarKyle Evans <kevans@freebsd.org>
Signed-off-by: default avatarWarner Losh <imp@bsdimp.com>
Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
parent 67ccbe79
No related branches found
No related tags found
No related merge requests found
......@@ -13,8 +13,10 @@ long do_rt_sigreturn(CPUArchState *env);
abi_long do_sigaltstack(abi_ulong uss_addr, abi_ulong uoss_addr, abi_ulong sp);
long do_sigreturn(CPUArchState *env);
void force_sig_fault(int sig, int code, abi_ulong addr);
int host_to_target_signal(int sig);
void process_pending_signals(CPUArchState *env);
void queue_signal(CPUArchState *env, int sig, target_siginfo_t *info);
void signal_init(void);
int target_to_host_signal(int sig);
#endif
......@@ -2,6 +2,7 @@
* Emulation of BSD signals
*
* Copyright (c) 2003 - 2008 Fabrice Bellard
* Copyright (c) 2013 Stacey Son
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......@@ -27,6 +28,21 @@
* fork.
*/
/*
* The BSD ABIs use the same singal numbers across all the CPU architectures, so
* (unlike Linux) these functions are just the identity mapping. This might not
* be true for XyzBSD running on AbcBSD, which doesn't currently work.
*/
int host_to_target_signal(int sig)
{
return sig;
}
int target_to_host_signal(int sig)
{
return sig;
}
/*
* Queue a signal so that it will be send to the virtual CPU as soon as
* possible.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment