xref: /kvmtool/include/common-cmds.h (revision 292925a4e4b08c455fbf02639cbe062ead712425)
1*292925a4SAndre Przywara struct cmdname_help
2*292925a4SAndre Przywara {
3*292925a4SAndre Przywara     char name[16];
4*292925a4SAndre Przywara     char help[80];
5*292925a4SAndre Przywara };
6*292925a4SAndre Przywara 
7*292925a4SAndre Przywara static struct cmdname_help common_cmds[] = {
8*292925a4SAndre Przywara   {"run", "Start the virtual machine"},
9*292925a4SAndre Przywara   {"setup", "Setup a new virtual machine"},
10*292925a4SAndre Przywara   {"pause", "Pause the virtual machine"},
11*292925a4SAndre Przywara   {"resume", "Resume the virtual machine"},
12*292925a4SAndre Przywara   {"version", "Print the version of the kernel tree kvm tools"},
13*292925a4SAndre Przywara   {"list", "Print a list of running instances on the host."},
14*292925a4SAndre Przywara   {"debug", "Print debug information from a running instance"},
15*292925a4SAndre Przywara   {"balloon", "Inflate or deflate the virtio balloon"},
16*292925a4SAndre Przywara   {"stop", "Stop a running instance"},
17*292925a4SAndre Przywara   {"stat", "Print statistics about a running instance"},
18*292925a4SAndre Przywara   {"sandbox", "Run a command in a sandboxed guest"},
19*292925a4SAndre Przywara };
20