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

2009-11-19 Thread Markus Armbruster
Luiz Capitulino writes: > On Wed, 18 Nov 2009 16:16:11 +0100 > Markus Armbruster wrote: > >> Luiz Capitulino 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 Luiz Capitulino
On Wed, 18 Nov 2009 13:58:17 -0600 Anthony Liguori 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 information: > >> > >>

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 detail

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,

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 wrote: > Luiz Capitulino writes: [...] > > +static const char *append_field(QString *outstr, const QError *qerror, > > +const char *start) > > +{ > > +QObject *obj; > > +QDict *qdict; > > +QString

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

2009-11-18 Thread Markus Armbruster
Luiz Capitulino 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 > ref

[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 - file