Release micro-ROS Foxy: disable tracetools status app

This commit is contained in:
José Antonio Moral 2020-07-22 11:06:10 +00:00 committed by Ingo Lütkebohle
parent 2f09614c36
commit b473cec508
2 changed files with 19 additions and 11 deletions

View file

@ -18,11 +18,14 @@
#include <stddef.h>
#include <functional>
#include "tracetools/config.h"
#include "tracetools/visibility_control.hpp"
/// Default symbol, used when address resolution fails.
#define SYMBOL_UNKNOWN "UNKNOWN"
#ifndef TRACETOOLS_DISABLED
TRACETOOLS_PUBLIC const char * _demangle_symbol(const char * mangled);
TRACETOOLS_PUBLIC const char * _get_symbol_funcptr(void * funcptr);
@ -62,4 +65,6 @@ const char * get_symbol(L && l)
return _demangle_symbol(typeid(l).name());
}
#endif // TRACETOOLS_DISABLED
#endif // TRACETOOLS__UTILS_HPP_