diff options
author | Josh Blum | 2013-02-24 14:29:16 -0800 |
---|---|---|
committer | Josh Blum | 2013-02-24 14:29:16 -0800 |
commit | 883743bd59f40f9ce1e30bd196de78c2e7646294 (patch) | |
tree | f9b0cf4f0a1d3894643a681a54aa21fe55398243 /lib/gras_impl/debug.hpp | |
parent | 6841702911d07a2bad86ecd3bfc243b6a688ad2a (diff) | |
parent | decd0f40714a71c6fb5c4f100e8f51c6ef238b26 (diff) | |
download | sandhi-883743bd59f40f9ce1e30bd196de78c2e7646294.tar.gz sandhi-883743bd59f40f9ce1e30bd196de78c2e7646294.tar.bz2 sandhi-883743bd59f40f9ce1e30bd196de78c2e7646294.zip |
Merge branch 'stats'
Conflicts:
grextras
include/gras/top_block.hpp
lib/block_handlers.cpp
lib/block_task.cpp
lib/element_impl.hpp
tests/CMakeLists.txt
Diffstat (limited to 'lib/gras_impl/debug.hpp')
-rw-r--r-- | lib/gras_impl/debug.hpp | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/lib/gras_impl/debug.hpp b/lib/gras_impl/debug.hpp index 61376d5..c01e7d4 100644 --- a/lib/gras_impl/debug.hpp +++ b/lib/gras_impl/debug.hpp @@ -24,11 +24,9 @@ extern void *operator new(std::size_t n) throw (std::bad_alloc); //---------------------------------------------------------------------- //-- define to enable these debugs: //---------------------------------------------------------------------- -//#define WORK_DEBUG -//#define ASSERTING +#define ASSERTING //#define MESSAGE_TRACING //#define ITEM_CONSPROD -//#define WORK_COUNTS //---------------------------------------------------------------------- //-- time accumulation printer @@ -68,32 +66,4 @@ extern void *operator new(std::size_t n) throw (std::bad_alloc); #define ASSERT(x) #endif -//---------------------------------------------------------------------- -//-- implementation for work debug -//---------------------------------------------------------------------- -#ifdef WORK_DEBUG - -#include <boost/thread/mutex.hpp> - -static boost::mutex work_debug_mutex; - -struct WorkDebugPrinter -{ - WorkDebugPrinter(const std::string &name): - lock(work_debug_mutex), name(name) - { - std::cerr << "-----> begin work on " << name << std::endl; - } - - ~WorkDebugPrinter(void) - { - std::cerr << "<----- end work on " << name << std::endl; - } - - boost::mutex::scoped_lock lock; - std::string name; -}; - -#endif - #endif /*INCLUDED_LIBGRAS_IMPL_DEBUG_HPP*/ |