qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 2/7] add strify() macros.


From: Blue Swirl
Subject: Re: [Qemu-devel] [PATCH 2/7] add strify() macros.
Date: Mon, 13 Jul 2009 17:59:57 +0300

On 7/13/09, Anthony Liguori <address@hidden> wrote:
> Gerd Hoffmann wrote:
>
> > Signed-off-by: Gerd Hoffmann <address@hidden>
> > ---
> >  osdep.h |    5 +++++
> >  1 files changed, 5 insertions(+), 0 deletions(-)
> >
> > diff --git a/osdep.h b/osdep.h
> > index ffbf221..ac660c8 100644
> > --- a/osdep.h
> > +++ b/osdep.h
> > @@ -27,6 +27,11 @@
> >  #define unlikely(x)   __builtin_expect(!!(x), 0)
> >  #endif
> >  +#ifndef strify
> > +#define strify_i(a) # a
> > +#define strify(a) strify_i(a)
> > +#endif
> > +
> >
> >
>
>  Could get even fancier with something like:
>
>  #define strify_i(a) # a
>  #define strify(a) strify_i(a)

What's wrong with the almost identical stringify() macro?




reply via email to

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