Re: [Qemu-devel] [PATCH 06/11] qobject: add QBool type

2009-10-19 Thread Anthony Liguori
Luiz Capitulino wrote: On Sat, 17 Oct 2009 08:36:06 -0500 Anthony Liguori aligu...@us.ibm.com wrote: We currently model as json bool as an int. This works fine on the server side but it means we cannot send back proper bools to the client. Introducing a proper QBool type fixes that.

Re: [Qemu-devel] [PATCH 06/11] qobject: add QBool type

2009-10-19 Thread Luiz Capitulino
On Mon, 19 Oct 2009 09:17:38 -0500 Anthony Liguori aligu...@us.ibm.com wrote: Luiz Capitulino wrote: On Sat, 17 Oct 2009 08:36:06 -0500 Anthony Liguori aligu...@us.ibm.com wrote: We currently model as json bool as an int. This works fine on the server side but it means we

Re: [Qemu-devel] [PATCH 06/11] qobject: add QBool type

2009-10-18 Thread Luiz Capitulino
On Sat, 17 Oct 2009 08:36:06 -0500 Anthony Liguori aligu...@us.ibm.com wrote: We currently model as json bool as an int. This works fine on the server side but it means we cannot send back proper bools to the client. Introducing a proper QBool type fixes that. As we talked earlier today, I

[Qemu-devel] [PATCH 06/11] qobject: add QBool type

2009-10-17 Thread Anthony Liguori
We currently model as json bool as an int. This works fine on the server side but it means we cannot send back proper bools to the client. Introducing a proper QBool type fixes that. Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- Makefile |2 +- qbool.c | 76