mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-29 05:13:54 -06:00
error: Implement the warn and free Error functions
Implement warn_report_err() and warn_reportf_err() functions which are the same as the error_report_err() and error_reportf_err() functions except report a warning instead of an error. Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-Id: <276ff93eadc0b01b8243cc61ffc331f77922c0d0.1499866456.git.alistair.francis@xilinx.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
c51c4f8807
commit
e43ead1d0b
3 changed files with 32 additions and 0 deletions
|
@ -266,11 +266,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.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue