mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
util: spelling fixes
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20230823065335.1919380-3-mjt@tls.msk.ru> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
c342a5d38c
commit
d02d06f8f1
13 changed files with 18 additions and 18 deletions
|
@ -1125,9 +1125,9 @@ typedef struct {
|
|||
#define EFA_PARISC_1_1 0x0210 /* PA-RISC 1.1 big-endian. */
|
||||
#define EFA_PARISC_2_0 0x0214 /* PA-RISC 2.0 big-endian. */
|
||||
|
||||
/* Additional section indeces. */
|
||||
/* Additional section indices. */
|
||||
|
||||
#define SHN_PARISC_ANSI_COMMON 0xff00 /* Section for tenatively declared
|
||||
#define SHN_PARISC_ANSI_COMMON 0xff00 /* Section for tentatively declared
|
||||
symbols in ANSI C. */
|
||||
#define SHN_PARISC_HUGE_COMMON 0xff01 /* Common blocks in huge model. */
|
||||
|
||||
|
|
|
@ -124,7 +124,7 @@ void qio_channel_socket_connect_async(QIOChannelSocket *ioc,
|
|||
* qio_channel_socket_listen_sync:
|
||||
* @ioc: the socket channel object
|
||||
* @addr: the address to listen to
|
||||
* @num: the expected ammount of connections
|
||||
* @num: the expected amount of connections
|
||||
* @errp: pointer to a NULL-initialized error object
|
||||
*
|
||||
* Attempt to listen to the address @addr. This method
|
||||
|
@ -141,7 +141,7 @@ int qio_channel_socket_listen_sync(QIOChannelSocket *ioc,
|
|||
* qio_channel_socket_listen_async:
|
||||
* @ioc: the socket channel object
|
||||
* @addr: the address to listen to
|
||||
* @num: the expected ammount of connections
|
||||
* @num: the expected amount of connections
|
||||
* @callback: the function to invoke on completion
|
||||
* @opaque: user data to pass to @callback
|
||||
* @destroy: the function to free @opaque
|
||||
|
|
|
@ -145,7 +145,7 @@ typedef void (*QIOTaskWorker)(QIOTask *task,
|
|||
* The QIOTask module can also be used to perform operations
|
||||
* in a background thread context, while still reporting the
|
||||
* results in the main event thread. This allows code which
|
||||
* cannot easily be rewritten to be asychronous (such as DNS
|
||||
* cannot easily be rewritten to be asynchronous (such as DNS
|
||||
* lookups) to be easily run non-blocking. Reporting the
|
||||
* results in the main thread context means that the caller
|
||||
* typically does not need to be concerned about thread
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* Currently the iova tree will only allow to keep ranges
|
||||
* information, and no extra user data is allowed for each element. A
|
||||
* benefit is that we can merge adjacent ranges internally within the
|
||||
* tree. It can save a lot of memory when the ranges are splitted but
|
||||
* tree. It can save a lot of memory when the ranges are split but
|
||||
* mostly continuous.
|
||||
*
|
||||
* Note that current implementation does not provide any thread
|
||||
|
@ -128,7 +128,7 @@ const DMAMap *iova_tree_find_address(const IOVATree *tree, hwaddr iova);
|
|||
* iova_tree_foreach:
|
||||
*
|
||||
* @tree: the iova tree to iterate on
|
||||
* @iterator: the interator for the mappings, return true to stop
|
||||
* @iterator: the iterator for the mappings, return true to stop
|
||||
*
|
||||
* Iterate over the iova tree.
|
||||
*
|
||||
|
|
|
@ -25,7 +25,7 @@ typedef void (YankFn)(void *opaque);
|
|||
* @instance: The instance.
|
||||
* @errp: Error object.
|
||||
*
|
||||
* Returns true on success or false if an error occured.
|
||||
* Returns true on success or false if an error occurred.
|
||||
*/
|
||||
bool yank_register_instance(const YankInstance *instance, Error **errp);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue