diff --git a/kvm-pause.c b/kvm-pause.c index fdf8714..0cb6f29 100644 --- a/kvm-pause.c +++ b/kvm-pause.c @@ -5,9 +5,18 @@ #include #include #include +#include int kvm_cmd_pause(int argc, const char **argv, const char *prefix) { - signal(SIGUSR2, SIG_IGN); - return system("kill -USR2 $(pidof kvm)"); + int pid; + + if (argc != 1) + die("Usage: kvm debug [instance name]\n"); + + pid = kvm__get_pid_by_instance(argv[0]); + if (pid < 0) + die("Failed locating instance name"); + + return kill(pid, SIGUSR2); }