diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-02-14 10:19:53 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-02-14 18:57:33 +0000 |
commit | 59f971d451fbabee3194bb565f40846398ee6e6f (patch) | |
tree | d775a7dc5f9551b1b8d0e212d11d7091732807b5 /qerror.h | |
parent | 0a54a0ce3e7659d7804274fcb058154d52fb8d82 (diff) |
qdev: print error message before aborting
qdev_prop_set_* functions are always called by machine init functions
that should know what they're doing, so they abort on error. Still,
an assert(!errp) does not aid debugging. Print an error before aborting.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'qerror.h')
-rw-r--r-- | qerror.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -41,6 +41,7 @@ void qerror_print(QError *qerror); void qerror_report_internal(const char *file, int linenr, const char *func, const char *fmt, ...) GCC_FMT_ATTR(4, 5); void qerror_report_err(Error *err); +void assert_no_error(Error *err); QString *qerror_format(const char *fmt, QDict *error); #define qerror_report(fmt, ...) \ qerror_report_internal(__FILE__, __LINE__, __func__, fmt, ## __VA_ARGS__) |