qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [RFC][PATCH v4 01/18] virtagent: add common rpc transpo


From: Jes Sorensen
Subject: Re: [Qemu-devel] [RFC][PATCH v4 01/18] virtagent: add common rpc transport defs
Date: Thu, 18 Nov 2010 14:53:35 +0100
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.12) Gecko/20101103 Fedora/1.0-0.33.b2pre.fc14 Lightning/1.0b3pre Thunderbird/3.1.6

On 11/16/10 17:01, Michael Roth wrote:
> +#define DEBUG_VA
> +
> +#ifdef DEBUG_VA
> +#define TRACE(msg, ...) do { \
> +    fprintf(stderr, "%s:%s():L%d: " msg "\n", \
> +            __FILE__, __FUNCTION__, __LINE__, ## __VA_ARGS__); \
> +} while(0)
> +#else
> +#define TRACE(msg, ...) \
> +    do { } while (0)
> +#endif
> +
> +#define LOG(msg, ...) do { \
> +    fprintf(stderr, "%s:%s(): " msg "\n", \
> +            __FILE__, __FUNCTION__, ## __VA_ARGS__); \
> +} while(0)

I am sure I saw those macros in a couple of other places in the tree
recently :)

> +#define TADDR "127.0.0.1:8080"
> +#define URL "http://localhost:8080/RPC2";

Rather than relying on hard coded addresses for this, how about moving
it to a config file?

Cheers,
Jes



reply via email to

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