From ad8f21763e7ecfeafefaca00dd5fdbd8d2f588f6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 17 Sep 2019 19:16:53 -0600 Subject: [PATCH] deepen stacktrace to show where non-process calls to supposedly process-stack-only methods are called --- libs/ardour/session_transport.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc index 3ab5c64f6e..8831c364b2 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -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