hmp.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Human Monitor Interface
  3. *
  4. * Copyright IBM, Corp. 2011
  5. *
  6. * Authors:
  7. * Anthony Liguori <aliguori@us.ibm.com>
  8. *
  9. * This work is licensed under the terms of the GNU GPL, version 2. See
  10. * the COPYING file in the top-level directory.
  11. *
  12. */
  13. #ifndef HMP_H
  14. #define HMP_H
  15. #include "qemu-common.h"
  16. #include "qapi-types.h"
  17. void hmp_info_name(Monitor *mon);
  18. void hmp_info_version(Monitor *mon);
  19. void hmp_info_kvm(Monitor *mon);
  20. void hmp_info_status(Monitor *mon);
  21. void hmp_info_uuid(Monitor *mon);
  22. void hmp_info_chardev(Monitor *mon);
  23. void hmp_info_mice(Monitor *mon);
  24. void hmp_info_migrate(Monitor *mon);
  25. void hmp_info_cpus(Monitor *mon);
  26. void hmp_info_block(Monitor *mon);
  27. void hmp_info_blockstats(Monitor *mon);
  28. void hmp_info_vnc(Monitor *mon);
  29. void hmp_info_spice(Monitor *mon);
  30. void hmp_info_balloon(Monitor *mon);
  31. void hmp_info_pci(Monitor *mon);
  32. void hmp_quit(Monitor *mon, const QDict *qdict);
  33. void hmp_stop(Monitor *mon, const QDict *qdict);
  34. void hmp_system_reset(Monitor *mon, const QDict *qdict);
  35. void hmp_system_powerdown(Monitor *mon, const QDict *qdict);
  36. void hmp_cpu(Monitor *mon, const QDict *qdict);
  37. #endif