diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-11-18 23:05:30 -0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-03 09:41:20 -0600 |
commit | 7b0c1b4a2b6cf7eb586273c000fbaa0e479df0b7 (patch) | |
tree | 2e8c0b5b0453f487cd3c0eab5cf48222284a1bc9 /Makefile | |
parent | af47b83c5782551a4e6df5c2cde7acab3845b29e (diff) | |
download | qemu-7b0c1b4a2b6cf7eb586273c000fbaa0e479df0b7.tar.gz qemu-7b0c1b4a2b6cf7eb586273c000fbaa0e479df0b7.tar.bz2 qemu-7b0c1b4a2b6cf7eb586273c000fbaa0e479df0b7.zip |
Introduce QError
QError is a high-level data type which represents an exception
in QEMU, it stores the following error information:
- class Error class name (eg. "ServiceUnavailable")
- description A detailed error description, which can contain
references to run-time error data
- filename The file name of where the error occurred
- line number The exact line number of the error
- function The function name of where the error occurred
- run-time data Any run-time error data
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -149,7 +149,7 @@ obj-y += qemu-char.o aio.o savevm.o obj-y += msmouse.o ps2.o obj-y += qdev.o qdev-properties.o obj-y += qint.o qstring.o qdict.o qlist.o qfloat.o qbool.o json-lexer.o -obj-y += json-streamer.o json-parser.o qjson.o +obj-y += json-streamer.o json-parser.o qjson.o qerror.o obj-y += qemu-config.o block-migration.o obj-$(CONFIG_BRLAPI) += baum.o |