deepen stacktrace to show where non-process calls to supposedly process-stack-only methods are called

This commit is contained in:
Paul Davis 2019-09-17 19:16:53 -06:00
parent bd229936ec
commit ad8f21763e

View file

@ -76,7 +76,7 @@ using namespace PBD;
# define ENSURE_PROCESS_THREAD \
do { \
if (!AudioEngine::instance()->in_process_thread()) { \
PBD::stacktrace (std::cerr, 10); \
PBD::stacktrace (std::cerr, 20); \
} \
} while (0)
#endif