Re: [Qemu-devel] [PATCH 07/10] Introduce QError

2009-11-19 Thread Markus Armbruster
Luiz Capitulino lcapitul...@redhat.com writes: On Wed, 18 Nov 2009 16:16:11 +0100 Markus Armbruster arm...@redhat.com wrote: Luiz Capitulino lcapitul...@redhat.com writes: [...] +static const char *append_field(QString *outstr, const QError *qerror, +

Re: [Qemu-devel] [PATCH 07/10] Introduce QError

2009-11-18 Thread Markus Armbruster
Luiz Capitulino lcapitul...@redhat.com writes: 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) - descriptionA detailed error description, which can contain

Re: [Qemu-devel] [PATCH 07/10] Introduce QError

2009-11-18 Thread Luiz Capitulino
On Wed, 18 Nov 2009 16:16:11 +0100 Markus Armbruster arm...@redhat.com wrote: Luiz Capitulino lcapitul...@redhat.com writes: [...] +static const char *append_field(QString *outstr, const QError *qerror, +const char *start) +{ +QObject *obj; +

Re: [Qemu-devel] [PATCH 07/10] Introduce QError

2009-11-18 Thread Daniel P. Berrange
On Tue, Nov 17, 2009 at 05:43:54PM -0200, Luiz Capitulino wrote: 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) - descriptionA detailed error description, which

Re: [Qemu-devel] [PATCH 07/10] Introduce QError

2009-11-18 Thread Anthony Liguori
Daniel P. Berrange wrote: On Tue, Nov 17, 2009 at 05:43:54PM -0200, Luiz Capitulino wrote: 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) - descriptionA

Re: [Qemu-devel] [PATCH 07/10] Introduce QError

2009-11-18 Thread Luiz Capitulino
On Wed, 18 Nov 2009 13:58:17 -0600 Anthony Liguori aligu...@linux.vnet.ibm.com wrote: Daniel P. Berrange wrote: On Tue, Nov 17, 2009 at 05:43:54PM -0200, Luiz Capitulino wrote: QError is a high-level data type which represents an exception in QEMU, it stores the following error

[Qemu-devel] [PATCH 07/10] Introduce QError

2009-11-17 Thread Luiz Capitulino
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) - descriptionA detailed error description, which can contain references to run-time error data -