Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use error_is_set() only when necessary (again) | Markus Armbruster | 2014-04-25 | 1 | -3/+3 |
| | | | | | | | | | | | error_is_set(&var) is the same as var != NULL, but it takes whole-program analysis to figure that out. Unnecessarily hard for optimizers, static checkers, and human readers. Commit 84d18f0 dumbed it down to obvious, but a few more have crept in since, and documentation was overlooked. Dumb these down, too. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||||
* | docs: writing-qmp-commands.txt: update error section | Luiz Capitulino | 2012-08-13 | 1 | -20/+27 |
| | | | | | | | Add information about the new error format and improve the text a bit. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> | ||||
* | Spelling fixes in comments and documentation | Stefan Weil | 2012-01-13 | 1 | -1/+1 |
| | | | | | | | Codespell detected these new spelling issues. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | ||||
* | docs: Add writing-qmp-commands.txt | Luiz Capitulino | 2011-12-06 | 1 | -0/+642 |
Explains how to write QMP commands using the QAPI. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> |