2 * (C) Copyright 2007-2010 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
4 * This file is released under the GPLv2. See the COPYING file for more
15 *! Starts/resumes virtual machine execution.
17 static int cmd_begin(struct virt_sys
*sys
, char *cmd
, int len
)
19 SHELL_CMD_AUTH(sys
, G
);
21 return guest_begin(sys
);
31 *! Stops virtual machine execution.
33 static int cmd_stop(struct virt_sys
*sys
, char *cmd
, int len
)
35 SHELL_CMD_AUTH(sys
, G
);
37 return guest_stop(sys
);