[Discuss-gnuradio] Debugging environment variables

2010-09-27 Thread Philip Balister
It seems like there are some environment variables you can set to make 
GNU radio print some debug info. Does anyone have a list of these?


Philip

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Debugging environment variables

2010-09-27 Thread Eric Blossom
On Mon, Sep 27, 2010 at 07:02:34AM -0400, Philip Balister wrote:
 It seems like there are some environment variables you can set to
 make GNU radio print some debug info. Does anyone have a list of
 these?
 
 Philip

None that I'm aware of :-)

There are some #define's in parts of the runtime code that will
produce debugging output if you enable them.

For looking at scheduler behavior the one you want is at the top of
gr_block_executor.cc.  

  // must be defined to either 0 or 1
  #define ENABLE_LOGGING 0

Eric

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Debugging environment variables

2010-09-27 Thread Philip Balister

On 09/27/2010 11:47 PM, Eric Blossom wrote:

On Mon, Sep 27, 2010 at 07:02:34AM -0400, Philip Balister wrote:

It seems like there are some environment variables you can set to
make GNU radio print some debug info. Does anyone have a list of
these?

Philip


None that I'm aware of :-)

There are some #define's in parts of the runtime code that will
produce debugging output if you enable them.

For looking at scheduler behavior the one you want is at the top of
gr_block_executor.cc.

   // must be defined to either 0 or 1
   #define ENABLE_LOGGING 0


Thanks, this is what I was looking for.

Philip

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio