diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-12 11:29:26 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-12 11:29:26 +0200 |
commit | 2b546956a800545bdda2be9682fac21fd1e86736 (patch) | |
tree | f888cc8962ac9bb00a25b8f7143da7ad56e8fe3a /src | |
parent | 30c368c0f6e15890a5a6bd27d4ae4175116b02b6 (diff) |
util: add scope tracer utility (hack, but more or less useful)
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/util.cpp | 2 | ||||
-rw-r--r-- | src/util.hpp | 27 |
2 files changed, 27 insertions, 2 deletions
diff --git a/src/util.cpp b/src/util.cpp index 1f2bc05..db61bc2 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -24,6 +24,8 @@ #include <unistd.h> +thread_local int ScopeTrace::indent = 0; + unique_fd::~unique_fd() { if (this->fd != -1) { close(this->fd); diff --git a/src/util.hpp b/src/util.hpp index ab9019b..ff173c8 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -18,10 +18,11 @@ #define WM_UTIL_HPP #include <functional> -#include <sys/poll.h> - +#include <thread> #include <vector> +#include <sys/poll.h> + extern "C" { #include <afb/afb-binding.h> }; @@ -49,6 +50,28 @@ extern "C" { #define logdebug(...) #endif +#ifdef NDEBUG +#define ST() +#define STN(N) +#else +#define CONCAT_(X, Y) X##Y +#define CONCAT(X, Y) CONCAT_(X, Y) + +#define ST() \ + ScopeTrace __attribute__((unused)) CONCAT(trace_scope_, __LINE__)(__func__) +#define STN(N) \ + ScopeTrace __attribute__((unused)) CONCAT(named_trace_scope_, __LINE__)(#N) + +struct ScopeTrace { + thread_local static int indent; + char const *f{}; + explicit ScopeTrace(char const *func) : f(func) { + fprintf(stderr, "%lu %*s%s -->\n", pthread_self(), 2 * indent++, "", this->f); + } + ~ScopeTrace() { fprintf(stderr, "%lu %*s%s <--\n", pthread_self(), 2 * --indent, "", this->f); } +}; +#endif + // _ _ _ __ _ // ___| |_ _ __ _ _ ___| |_ _ _ _ __ (_) __ _ _ _ ___ / _| __| | // / __| __| '__| | | |/ __| __| | | | | '_ \| |/ _` | | | |/ _ \ | |_ / _` | |