commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r8270 - gnuradio/branches/developers/jcorgan/merge-fix


From: jcorgan
Subject: [Commit-gnuradio] r8270 - gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime
Date: Thu, 24 Apr 2008 14:28:20 -0600 (MDT)

Author: jcorgan
Date: 2008-04-24 14:28:20 -0600 (Thu, 24 Apr 2008)
New Revision: 8270

Modified:
   
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_flat_flowgraph.cc
   
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_flowgraph.cc
   
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_hier_block2.cc
   
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_hier_block2_detail.cc
   
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_scheduler_thread.cc
   
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_single_threaded_scheduler.cc
   
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_top_block_impl.cc
Log:
Turn off debugging output.

Modified: 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_flat_flowgraph.cc
===================================================================
--- 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_flat_flowgraph.cc
   2008-04-24 20:20:20 UTC (rev 8269)
+++ 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_flat_flowgraph.cc
   2008-04-24 20:28:20 UTC (rev 8270)
@@ -31,7 +31,7 @@
 #include <iostream>
 #include <map>
 
-#define GR_FLAT_FLOWGRAPH_DEBUG 1
+#define GR_FLAT_FLOWGRAPH_DEBUG 0
 
 gr_flat_flowgraph_sptr
 gr_make_flat_flowgraph()

Modified: 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_flowgraph.cc
===================================================================
--- 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_flowgraph.cc
        2008-04-24 20:20:20 UTC (rev 8269)
+++ 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_flowgraph.cc
        2008-04-24 20:28:20 UTC (rev 8270)
@@ -29,7 +29,7 @@
 #include <stdexcept>
 #include <sstream>
 
-#define GR_FLOWGRAPH_DEBUG 1
+#define GR_FLOWGRAPH_DEBUG 0
 
 gr_edge::~gr_edge()
 {

Modified: 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_hier_block2.cc
===================================================================
--- 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_hier_block2.cc
      2008-04-24 20:20:20 UTC (rev 8269)
+++ 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_hier_block2.cc
      2008-04-24 20:28:20 UTC (rev 8270)
@@ -29,7 +29,7 @@
 #include <gr_hier_block2_detail.h>
 #include <iostream>
 
-#define GR_HIER_BLOCK2_DEBUG 1
+#define GR_HIER_BLOCK2_DEBUG 0
 
 gr_hier_block2_sptr gr_make_hier_block2(const std::string &name, 
                                         gr_io_signature_sptr input_signature,

Modified: 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_hier_block2_detail.cc
===================================================================
--- 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_hier_block2_detail.cc
       2008-04-24 20:20:20 UTC (rev 8269)
+++ 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_hier_block2_detail.cc
       2008-04-24 20:28:20 UTC (rev 8270)
@@ -28,7 +28,7 @@
 #include <stdexcept>
 #include <sstream>
 
-#define GR_HIER_BLOCK2_DETAIL_DEBUG 1
+#define GR_HIER_BLOCK2_DETAIL_DEBUG 0
 
 gr_hier_block2_detail::gr_hier_block2_detail(gr_hier_block2 *owner) :
   d_owner(owner), 

Modified: 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_scheduler_thread.cc
===================================================================
--- 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_scheduler_thread.cc
 2008-04-24 20:20:20 UTC (rev 8269)
+++ 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_scheduler_thread.cc
 2008-04-24 20:28:20 UTC (rev 8270)
@@ -31,7 +31,7 @@
 #include <signal.h>
 #endif
 
-#define GR_SCHEDULER_THREAD_DEBUG 1
+#define GR_SCHEDULER_THREAD_DEBUG 0
 
 gr_scheduler_thread::gr_scheduler_thread(gr_block_vector_t graph) :
   omni_thread(NULL, PRIORITY_NORMAL),

Modified: 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_single_threaded_scheduler.cc
===================================================================
--- 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_single_threaded_scheduler.cc
        2008-04-24 20:20:20 UTC (rev 8269)
+++ 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_single_threaded_scheduler.cc
        2008-04-24 20:28:20 UTC (rev 8270)
@@ -34,7 +34,7 @@
 #include <stdio.h>
 
 // must be defined to either 0 or 1
-#define ENABLE_LOGGING 1
+#define ENABLE_LOGGING 0
 
 #if (ENABLE_LOGGING)
 #define LOG(x) do { x; } while(0)

Modified: 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_top_block_impl.cc
===================================================================
--- 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_top_block_impl.cc
   2008-04-24 20:20:20 UTC (rev 8269)
+++ 
gnuradio/branches/developers/jcorgan/merge-fix/gnuradio-core/src/lib/runtime/gr_top_block_impl.cc
   2008-04-24 20:28:20 UTC (rev 8270)
@@ -35,7 +35,7 @@
 #include <string.h>
 #include <unistd.h>
 
-#define GR_TOP_BLOCK_IMPL_DEBUG 1
+#define GR_TOP_BLOCK_IMPL_DEBUG 0
 
 static gr_top_block_impl *s_impl = 0;
 





reply via email to

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