mirror of https://github.com/xemu-project/xemu.git
qapi: add markup to note blocks
Generally, surround command-line options with ``literal`` markup to help it stand out from prose in rendered HTML, and add cross-references to replace "see also" messages. References to types, values, and other QAPI definitions are not yet adjusted here; they will be converted en masse in a subsequent patch after the new QAPI doc generator is merged. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-ID: <20240626222128.406106-13-jsnow@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
649c6fa4ee
commit
543ff13a20
|
@ -24,8 +24,8 @@
|
|||
#
|
||||
# .. note:: This command is valid exactly when first connecting: it must
|
||||
# be issued before any other command will be accepted, and will fail
|
||||
# once the monitor is accepting other commands. (see qemu
|
||||
# docs/interop/qmp-spec.rst)
|
||||
# once the monitor is accepting other commands.
|
||||
# (see :doc:`/interop/qmp-spec`)
|
||||
#
|
||||
# .. note:: The QMP client needs to explicitly enable QMP capabilities,
|
||||
# otherwise all the QMP capabilities will be turned off by default.
|
||||
|
|
|
@ -104,7 +104,7 @@
|
|||
# Returns a list of information about each iothread.
|
||||
#
|
||||
# .. note:: This list excludes the QEMU main loop thread, which is not
|
||||
# declared using the -object iothread command-line option. It is
|
||||
# declared using the ``-object iothread`` command-line option. It is
|
||||
# always the main thread of the process.
|
||||
#
|
||||
# Returns: a list of @IOThreadInfo for each iothread
|
||||
|
@ -138,8 +138,8 @@
|
|||
#
|
||||
# .. note:: This function will succeed even if the guest is already in
|
||||
# the stopped state. In "inmigrate" state, it will ensure that the
|
||||
# guest remains paused once migration finishes, as if the -S option
|
||||
# was passed on the command line.
|
||||
# guest remains paused once migration finishes, as if the ``-S``
|
||||
# option was passed on the command line.
|
||||
#
|
||||
# In the "suspended" state, it will completely stop the VM and cause
|
||||
# a transition to the "paused" state. (Since 9.0)
|
||||
|
@ -161,7 +161,7 @@
|
|||
# .. note:: This command will succeed if the guest is currently running.
|
||||
# It will also succeed if the guest is in the "inmigrate" state; in
|
||||
# this case, the effect of the command is to make sure the guest
|
||||
# starts once migration finishes, removing the effect of the -S
|
||||
# starts once migration finishes, removing the effect of the ``-S``
|
||||
# command line option if it was passed.
|
||||
#
|
||||
# If the VM was previously suspended, and not been reset or woken,
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
# the 'docs/qdev-device-use.txt' file.
|
||||
#
|
||||
# 3. It's possible to list device properties by running QEMU with
|
||||
# the "-device DEVICE,help" command-line argument, where DEVICE
|
||||
# the ``-device DEVICE,help`` command-line argument, where DEVICE
|
||||
# is the device's name.
|
||||
#
|
||||
# Example:
|
||||
|
|
|
@ -146,7 +146,7 @@
|
|||
# @reason: The @ShutdownCause which resulted in the SHUTDOWN.
|
||||
# (since 4.0)
|
||||
#
|
||||
# .. note:: If the command-line option "-no-shutdown" has been
|
||||
# .. note:: If the command-line option ``-no-shutdown`` has been
|
||||
# specified, qemu will not exit, and a STOP event will eventually
|
||||
# follow the SHUTDOWN event.
|
||||
#
|
||||
|
|
|
@ -181,7 +181,7 @@
|
|||
#
|
||||
# .. note:: This type is deprecated in favor of SocketAddress. The
|
||||
# difference between SocketAddressLegacy and SocketAddress is that
|
||||
# the latter has fewer {} on the wire.
|
||||
# the latter has fewer ``{}`` on the wire.
|
||||
#
|
||||
# Since: 1.3
|
||||
##
|
||||
|
|
|
@ -1268,7 +1268,7 @@
|
|||
# Since: 2.6
|
||||
#
|
||||
# .. note:: The consoles are visible in the qom tree, under
|
||||
# /backend/console[$index]. They have a device link and head
|
||||
# ``/backend/console[$index]``. They have a device link and head
|
||||
# property, so it is possible to map which console belongs to which
|
||||
# device and display.
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue