linux-user: sig is target signal.

Signed-off-by: Riku Voipio <riku.voipio@iki.fi>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5801 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
ths 2008-11-27 15:46:25 +00:00
parent 777553406d
commit 2a913eb118
1 changed files with 1 additions and 1 deletions

View File

@ -502,7 +502,7 @@ int do_sigaction(int sig, const struct target_sigaction *act,
int host_sig;
int ret = 0;
if (sig < 1 || sig > TARGET_NSIG || sig == SIGKILL || sig == SIGSTOP)
if (sig < 1 || sig > TARGET_NSIG || sig == TARGET_SIGKILL || sig == TARGET_SIGSTOP)
return -EINVAL;
k = &sigact_table[sig - 1];
#if defined(DEBUG_SIGNAL)