/*
- * libvirt-qemu.c: Interfaces for the libvirt library to handle qemu-specific
+ * libvirt-qemu.c: Interfaces for the libvirt library to handle QEMU-specific
* APIs.
*
* Copyright (C) 2010-2014 Red Hat, Inc.
/**
* virDomainQemuMonitorCommand:
* @domain: a domain object
- * @cmd: the qemu monitor command string
+ * @cmd: the QEMU monitor command string
* @result: a string returned by @cmd
* @flags: bitwise-or of supported virDomainQemuMonitorCommandFlags
*
* connections to the QEMU driver.
*
* Send an arbitrary monitor command @cmd to @domain through the
- * qemu monitor. There are several requirements to safely and
+ * QEMU monitor. There are several requirements to safely and
* successfully use this API:
*
* - A @cmd that queries state without making any modifications is safe
* - A @cmd that alters state that is also tracked by libvirt is unsafe,
* and may cause libvirtd to crash
* - A @cmd that alters state not tracked by the current version of
- * libvirt is possible as a means to test new qemu features before
+ * libvirt is possible as a means to test new QEMU features before
* they have support in libvirt, but no guarantees are made to safety
*
* If VIR_DOMAIN_QEMU_MONITOR_COMMAND_HMP is set, the command is
/**
* virDomainQemuMonitorCommandWithFiles:
* @domain: a domain object
- * @cmd: the qemu monitor command string
+ * @cmd: the QEMU monitor command string
* @ninfiles: number of filedescriptors passed in @infiles
- * @infiles: filedescriptors to be passed to qemu with the command
+ * @infiles: filedescriptors to be passed to QEMU with the command
* @noutfiles: if non-NULL filled with number of returned file descriptors
* @outfiles: if non-NULL filled with an array of returned file descriptors
* @result: a string returned by @cmd
* connections to the QEMU driver with local connections using the unix socket.
*
* Send an arbitrary monitor command @cmd with file descriptors @infiles to
- * @domain through the qemu monitor and optionally return file descriptors via
+ * @domain through the QEMU monitor and optionally return file descriptors via
* @outfiles. There are several requirements to safely and successfully use
* this API:
*
* - A @cmd that alters state that is also tracked by libvirt is unsafe,
* and may cause libvirtd to crash
* - A @cmd that alters state not tracked by the current version of
- * libvirt is possible as a means to test new qemu features before
+ * libvirt is possible as a means to test new QEMU features before
* they have support in libvirt, but no guarantees are made to safety
*
* If VIR_DOMAIN_QEMU_MONITOR_COMMAND_HMP is set, the command is
* This API is QEMU specific, so it will only work with hypervisor
* connections to the QEMU driver.
*
- * Adds a callback to receive notifications of arbitrary qemu monitor events
- * occurring on a domain. Many qemu monitor events also result in a libvirt
+ * Adds a callback to receive notifications of arbitrary QEMU monitor events
+ * occurring on a domain. Many QEMU monitor events also result in a libvirt
* event which can be delivered via virConnectDomainEventRegisterAny(); this
- * command is primarily for testing new qemu events that have not yet been
+ * command is primarily for testing new QEMU events that have not yet been
* given a libvirt counterpart event.
*
* If @dom is NULL, then events will be monitored for any domain. If @dom