loader: remove shouting from ORB's variable name
[hvf.git] / cp / shell / cmd_beginstop.c
blobfa2797b04ad60abdf85a072555541f8282be3973
1 /*
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
5 * details.
6 */
8 /*
9 *!!! BEGIN
10 *!! SYNTAX
11 *! \tok{\sc BEgin}
12 *!! XATNYS
13 *!! AUTH G
14 *!! PURPOSE
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);
25 *!!! STOP
26 *!! SYNTAX
27 *! \tok{\sc STOP}
28 *!! XATNYS
29 *!! AUTH G
30 *!! PURPOSE
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);