diff options
author | Josh Blum | 2012-09-13 22:25:59 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-13 22:25:59 -0700 |
commit | c1f4b98d88eebf1fdf408f87e96868fdf71222b9 (patch) | |
tree | 60f047318fe57301e12d94904cbc59f557ed5a76 /lib/gras_impl/debug.hpp | |
parent | 59e5dd66dfa80709eefc31fbd938095cbc0ded3a (diff) | |
parent | cae524fdf1da052cd70f3a872a8db4e80f202504 (diff) | |
download | sandhi-c1f4b98d88eebf1fdf408f87e96868fdf71222b9.tar.gz sandhi-c1f4b98d88eebf1fdf408f87e96868fdf71222b9.tar.bz2 sandhi-c1f4b98d88eebf1fdf408f87e96868fdf71222b9.zip |
Merge branch 'filter_work'
Diffstat (limited to 'lib/gras_impl/debug.hpp')
-rw-r--r-- | lib/gras_impl/debug.hpp | 46 |
1 files changed, 44 insertions, 2 deletions
diff --git a/lib/gras_impl/debug.hpp b/lib/gras_impl/debug.hpp index c235c1f..69f7b4a 100644 --- a/lib/gras_impl/debug.hpp +++ b/lib/gras_impl/debug.hpp @@ -20,14 +20,28 @@ #include <iostream> #include <stdexcept> +//---------------------------------------------------------------------- +//-- set to 1 to enable these debugs: +//---------------------------------------------------------------------- #define GENESIS 0 #define ARMAGEDDON 0 #define MESSAGE 0 -#define WORK 0 -#define ASSERTING 0 +//---------------------------------------------------------------------- +//-- define to enable these debugs: +//---------------------------------------------------------------------- +//#define WORK_DEBUG +#define ASSERTING + +//---------------------------------------------------------------------- +//-- various debug prints +//---------------------------------------------------------------------- #define HERE() std::cerr << __FILE__ << ":" << __LINE__ << std::endl << std::flush; #define VAR(x) std::cerr << #x << " = " << (x) << std::endl << std::flush; + +//---------------------------------------------------------------------- +//-- implementation for assert debug +//---------------------------------------------------------------------- #ifdef ASSERTING #define ASSERT(x) {if(not (x)) \ { \ @@ -38,4 +52,32 @@ #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::cout << "-----> begin work on " << name << std::endl; + } + + ~WorkDebugPrinter(void) + { + std::cout << "<----- end work on " << name << std::endl; + } + + boost::mutex::scoped_lock lock; + std::string name; +}; + +#endif + #endif /*INCLUDED_LIBGRAS_IMPL_DEBUG_HPP*/ |