qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 03/14] net: Convert conditional compilation of d


From: Stefan Hajnoczi
Subject: Re: [Qemu-devel] [PATCH 03/14] net: Convert conditional compilation of debug printfs to regular ifs
Date: Mon, 28 Apr 2014 12:10:48 +0200
User-agent: Mutt/1.5.21 (2010-09-15)

On Mon, Apr 28, 2014 at 10:26:04AM +0200, Marc Marí wrote:
>  /* Debug EEPRO100 card. */
>  #if 0
> -# define DEBUG_EEPRO100
> +#define DEBUG_EEPRO100 1
>  #endif

There seem to be a few ways of doing this (commenting out the line,
putting it in #if 0, etc).

Feel free to get rid of #define DEBUG_foo 1 lines completely, leaving
just the #ifndef (I think Kevin suggested this).

Editing the file is bad since it's easy to forget to remove changes when
doing git-commit(1).  Debugging should be enabled by recompiling instead
of editing source files:
$ ./configure --extra-cflags=-DDEBUG_FOO=1 && make

But this is just a personal preference, if you want to leave the lines
it's fine.

Stefan



reply via email to

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