From d606a37204a0603144cd3592bc9825f82e144741 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Sat, 27 Dec 2014 13:18:38 +0700 Subject: Add PBD debug macros for recording timing data --- libs/pbd/pbd/debug.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'libs/pbd/pbd/debug.h') diff --git a/libs/pbd/pbd/debug.h b/libs/pbd/pbd/debug.h index e9a94dfe35..4af1025cb2 100644 --- a/libs/pbd/pbd/debug.h +++ b/libs/pbd/pbd/debug.h @@ -25,6 +25,7 @@ #include #include "pbd/libpbd_visibility.h" +#include "pbd/timing.h" namespace PBD { @@ -57,6 +58,11 @@ namespace PBD { #define DEBUG_STR_APPEND(id,s) __debug_str ## id << s; #define DEBUG_ENABLED(bits) ((bits) & PBD::debug_bits) #define DEBUG_THREAD_SELF 0 + +#define DEBUG_TIMING_START(bits,td) if ((bits) & PBD::debug_bits) { td.start_timing (); } +#define DEBUG_TIMING_ADD_ELAPSED(bits,td) if ((bits) & PBD::debug_bits) { td.add_elapsed (); } +#define DEBUG_TIMING_RESET(bits,td) if ((bits) & PBD::debug_bits) { td.reset (); } + #else #define DEBUG_TRACE(bits,fmt,...) /*empty*/ #define DEBUG_STR(a) /* empty */ @@ -67,6 +73,11 @@ namespace PBD { #else #define DEBUG_THREAD_SELF pthread_self() #endif + +#define DEBUG_TIMING_START(bits,td) /*empty*/ +#define DEBUG_TIMING_ADD_ELAPSED(bits,td) /*empty*/ +#define DEBUG_TIMING_RESET(bits,td) /*empty*/ + #endif #endif /* __libpbd_debug_h__ */ -- cgit v1.2.3