mirror of
https://github.com/mii443/qemu.git
synced 2025-08-23 15:48:20 +00:00
Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2017-07-13' into staging
Error reporting patches for 2017-07-13 # gpg: Signature made Thu 13 Jul 2017 12:55:45 BST # gpg: using RSA key 0x3870B400EB918653 # gpg: Good signature from "Markus Armbruster <armbru@redhat.com>" # gpg: aka "Markus Armbruster <armbru@pond.sub.org>" # Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867 4E5F 3870 B400 EB91 8653 * remotes/armbru/tags/pull-error-2017-07-13: Convert error_report*_err() to warn_report*_err() error: Implement the warn and free Error functions char-socket: Report TCP socket waiting as information Convert error_report() to warn_report() error: Functions to report warnings and informational messages util/qemu-error: Rename error_print_loc() to be more generic websock: Don't try to set *errp directly block: Don't try to set *errp directly xilinx: Fix latent error handling bug Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
@ -265,11 +265,22 @@ void error_free(Error *err);
|
||||
*/
|
||||
void error_free_or_abort(Error **errp);
|
||||
|
||||
/*
|
||||
* Convenience function to warn_report() and free @err.
|
||||
*/
|
||||
void warn_report_err(Error *err);
|
||||
|
||||
/*
|
||||
* Convenience function to error_report() and free @err.
|
||||
*/
|
||||
void error_report_err(Error *err);
|
||||
|
||||
/*
|
||||
* Convenience function to error_prepend(), warn_report() and free @err.
|
||||
*/
|
||||
void warn_reportf_err(Error *err, const char *fmt, ...)
|
||||
GCC_FMT_ATTR(2, 3);
|
||||
|
||||
/*
|
||||
* Convenience function to error_prepend(), error_report() and free @err.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user