summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2019-10-28 15:54:18 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2019-10-28 15:54:18 -0600
commitb4addf529746efd310f098596e44edac6bfa1506 (patch)
tree6c79e3dbc1fe3716e32a376cee2a1aebaeaedaf6 /libs/ardour
parentfe56c5931cccb7c7e9de4d8f9f31353ff6efed88 (diff)
add new debug bit for backend callbacks
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/debug.h1
-rw-r--r--libs/ardour/debug.cc1
2 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/ardour/debug.h b/libs/ardour/ardour/debug.h
index cd96aba33a..7ba336d58a 100644
--- a/libs/ardour/ardour/debug.h
+++ b/libs/ardour/ardour/debug.h
@@ -95,6 +95,7 @@ namespace PBD {
LIBARDOUR_API extern DebugBits Push2;
LIBARDOUR_API extern DebugBits US2400;
LIBARDOUR_API extern DebugBits LaunchControlXL;
+ LIBARDOUR_API extern DebugBits BackendCallbacks;
}
}
diff --git a/libs/ardour/debug.cc b/libs/ardour/debug.cc
index 403bb03263..9e60d581f2 100644
--- a/libs/ardour/debug.cc
+++ b/libs/ardour/debug.cc
@@ -91,3 +91,4 @@ PBD::DebugBits PBD::DEBUG::VCA = PBD::new_debug_bit ("vca");
PBD::DebugBits PBD::DEBUG::Push2 = PBD::new_debug_bit ("push2");
PBD::DebugBits PBD::DEBUG::US2400 = PBD::new_debug_bit ("us2400");
PBD::DebugBits PBD::DEBUG::LaunchControlXL = PBD::new_debug_bit("launchcontrolxl");
+PBD::DebugBits PBD::DEBUG::BackendCallbacks = PBD::new_debug_bit("BackendCallbacks");