mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
bsd-user/signal.c: implement abstract target / host signal translation
Implement host_to_target_signal and target_to_host_signal. Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Kyle Evans <kevans@freebsd.org> Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
67ccbe798f
commit
1366ef817a
2 changed files with 18 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue