From: Sasha Levin Date: Mon, 30 May 2011 17:27:50 +0000 (+0300) Subject: kvm tools: Use correct value for user signal base X-Git-Tag: next-20110824~3^2~244 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1596bb00a9aa1579c5ff94f14cb7585f59906e1e;p=karo-tx-linux.git kvm tools: Use correct value for user signal base The bug has caused us to exit gracefully when receiving SIGUSR2. Signed-off-by: Sasha Levin Signed-off-by: Pekka Enberg --- diff --git a/tools/kvm/include/kvm/kvm.h b/tools/kvm/include/kvm/kvm.h index f951f2d56230..6a17362fb552 100644 --- a/tools/kvm/include/kvm/kvm.h +++ b/tools/kvm/include/kvm/kvm.h @@ -11,7 +11,7 @@ #define KVM_32BIT_GAP_SIZE (512 << 20) #define KVM_32BIT_GAP_START ((1ULL << 32) - KVM_32BIT_GAP_SIZE) -#define SIGKVMEXIT (SIGUSR1 + 2) +#define SIGKVMEXIT (SIGRTMIN + 0) struct kvm { int sys_fd; /* For system ioctls(), i.e. /dev/kvm */