qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] Re: [PATCH 3/3] Introduce QNumber data type


From: Luiz Capitulino
Subject: [Qemu-devel] Re: [PATCH 3/3] Introduce QNumber data type
Date: Thu, 6 Aug 2009 11:10:53 -0300

On Thu, 06 Aug 2009 17:04:50 +0300
Avi Kivity <address@hidden> wrote:

> On 08/06/2009 04:52 PM, Luiz Capitulino wrote:
> > +
> > +typedef struct QNumber {
> > +    QObject base;
> > +    union {
> > +        int n_int;
> > +        int64_t n_int64;
> > +    } number;
> > +} QNumber;
> >    
> 
> Why not have an int64_t exclusively?
> 
> Also, we need floating point support.  So probably need to split this 
> into QInt and QFloat.

 Right, we can have QInt with int64_t.

 But the monitor doesn't use floats, so QFloat doesn't seem
needed, at least for now.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]