diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-05-22 18:14:01 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-05-22 18:14:01 +0100 |
commit | 6054d883d6138bfc92c73a7c090c824b64086fd2 (patch) | |
tree | 3ac0d7a468e313793ebd94a1d4002621b3c61fa8 /include/qapi | |
parent | 5118dc5975e6aa2e823961e15b162919f94721cc (diff) | |
parent | d2e064a73ee7e5af244ff7b6406ac2344bbaa231 (diff) | |
download | qemu-6054d883d6138bfc92c73a7c090c824b64086fd2.zip qemu-6054d883d6138bfc92c73a7c090c824b64086fd2.tar.gz qemu-6054d883d6138bfc92c73a7c090c824b64086fd2.tar.bz2 |
Merge remote-tracking branch 'remotes/kraxel/tags/pull-chardev-2' into staging
purge error_is_set()
# gpg: Signature made Wed 21 May 2014 11:43:44 BST using RSA key ID D3E87138
# gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>"
# gpg: aka "Gerd Hoffmann <gerd@kraxel.org>"
# gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>"
* remotes/kraxel/tags/pull-chardev-2:
error: error_is_set() is finally unused; remove
char: Explain qmp_chardev_add()'s unusual error handling
char: Clean up fragile use of error_is_set()
char: Use return values instead of error_is_set(errp)
qemu-socket: Clean up inet_connect_opts()
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/qapi')
-rw-r--r-- | include/qapi/error.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/qapi/error.h b/include/qapi/error.h index 7995801..d712089 100644 --- a/include/qapi/error.h +++ b/include/qapi/error.h @@ -67,12 +67,6 @@ void error_set_win32(Error **errp, int win32_err, ErrorClass err_class, */ void error_setg_file_open(Error **errp, int os_errno, const char *filename); -/** - * Returns true if an indirect pointer to an error is pointing to a valid - * error object. - */ -bool error_is_set(Error **errp); - /* * Get the error class of an error object. */ |