From 1596bb00a9aa1579c5ff94f14cb7585f59906e1e Mon Sep 17 00:00:00 2001 From: Sasha Levin Date: Mon, 30 May 2011 20:27:50 +0300 Subject: [PATCH] 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 --- tools/kvm/include/kvm/kvm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.39.5