2007-01-16 00:42:10 +01:00
|
|
|
From: ?
|
|
|
|
Upstream: xen-unstable
|
|
|
|
|
|
|
|
SIGKILL causes atexit to not be called, so mouse SDL cleanup wasn't
|
|
|
|
performed, so mouse wasn't released.
|
|
|
|
|
|
|
|
|
2007-04-26 01:53:07 +02:00
|
|
|
Index: xen-unstable/tools/python/xen/xend/image.py
|
2007-01-16 00:42:10 +01:00
|
|
|
===================================================================
|
2007-04-26 01:53:07 +02:00
|
|
|
--- xen-unstable.orig/tools/python/xen/xend/image.py
|
|
|
|
+++ xen-unstable/tools/python/xen/xend/image.py
|
|
|
|
@@ -454,7 +454,7 @@ class HVMImageHandler(ImageHandler):
|
|
|
|
def destroy(self, suspend = False):
|
2007-02-11 11:48:10 +01:00
|
|
|
if self.pid:
|
|
|
|
try:
|
2007-04-26 01:53:07 +02:00
|
|
|
- sig = signal.SIGKILL
|
|
|
|
+ sig = signal.SIGTERM
|
|
|
|
if suspend:
|
|
|
|
log.info("use sigusr1 to signal qemu %d", self.pid)
|
|
|
|
sig = signal.SIGUSR1
|