summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/debug.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-06-12 18:14:09 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-06-12 18:14:09 -0400
commitcc543280d9869d4a7b800d547c53e38b13d02cea (patch)
treeaa26b29a02fa43ff24e5c9c777cb5294bf67e8e9 /libs/ardour/ardour/debug.h
parent10643779b6f039a7458bd0c970ef40ac80ea0568 (diff)
We were 2 more debug "bits" away from overflow, so recast PBD::DEBUG mechanism away from a 64bit integer and toward std::bitset.
Clean up a few minor related PBD::DEBUG issues along the way
Diffstat (limited to 'libs/ardour/ardour/debug.h')
-rw-r--r--libs/ardour/ardour/debug.h80
1 files changed, 40 insertions, 40 deletions
diff --git a/libs/ardour/ardour/debug.h b/libs/ardour/ardour/debug.h
index 8f4b562905..1c19d855bc 100644
--- a/libs/ardour/ardour/debug.h
+++ b/libs/ardour/ardour/debug.h
@@ -29,46 +29,46 @@
namespace PBD {
namespace DEBUG {
- LIBARDOUR_API extern uint64_t MidiSourceIO;
- LIBARDOUR_API extern uint64_t MidiPlaylistIO;
- LIBARDOUR_API extern uint64_t MidiDiskstreamIO;
- LIBARDOUR_API extern uint64_t SnapBBT;
- LIBARDOUR_API extern uint64_t Latency;
- LIBARDOUR_API extern uint64_t LatencyCompensation;
- LIBARDOUR_API extern uint64_t Peaks;
- LIBARDOUR_API extern uint64_t Processors;
- LIBARDOUR_API extern uint64_t ProcessThreads;
- LIBARDOUR_API extern uint64_t Graph;
- LIBARDOUR_API extern uint64_t Destruction;
- LIBARDOUR_API extern uint64_t MTC;
- LIBARDOUR_API extern uint64_t LTC;
- LIBARDOUR_API extern uint64_t Transport;
- LIBARDOUR_API extern uint64_t Slave;
- LIBARDOUR_API extern uint64_t SessionEvents;
- LIBARDOUR_API extern uint64_t MidiIO;
- LIBARDOUR_API extern uint64_t MackieControl;
- LIBARDOUR_API extern uint64_t MidiClock;
- LIBARDOUR_API extern uint64_t Monitor;
- LIBARDOUR_API extern uint64_t Solo;
- LIBARDOUR_API extern uint64_t AudioPlayback;
- LIBARDOUR_API extern uint64_t Panning;
- LIBARDOUR_API extern uint64_t LV2;
- LIBARDOUR_API extern uint64_t CaptureAlignment;
- LIBARDOUR_API extern uint64_t PluginManager;
- LIBARDOUR_API extern uint64_t AudioUnits;
- LIBARDOUR_API extern uint64_t ControlProtocols;
- LIBARDOUR_API extern uint64_t CycleTimers;
- LIBARDOUR_API extern uint64_t MidiTrackers;
- LIBARDOUR_API extern uint64_t Layering;
- LIBARDOUR_API extern uint64_t TempoMath;
- LIBARDOUR_API extern uint64_t TempoMap;
- LIBARDOUR_API extern uint64_t OrderKeys;
- LIBARDOUR_API extern uint64_t Automation;
- LIBARDOUR_API extern uint64_t WiimoteControl;
- LIBARDOUR_API extern uint64_t Ports;
- LIBARDOUR_API extern uint64_t AudioEngine;
- LIBARDOUR_API extern uint64_t Soundcloud;
- LIBARDOUR_API extern uint64_t Butler;
+ LIBARDOUR_API extern DebugBits MidiSourceIO;
+ LIBARDOUR_API extern DebugBits MidiPlaylistIO;
+ LIBARDOUR_API extern DebugBits MidiDiskstreamIO;
+ LIBARDOUR_API extern DebugBits SnapBBT;
+ LIBARDOUR_API extern DebugBits Latency;
+ LIBARDOUR_API extern DebugBits LatencyCompensation;
+ LIBARDOUR_API extern DebugBits Peaks;
+ LIBARDOUR_API extern DebugBits Processors;
+ LIBARDOUR_API extern DebugBits ProcessThreads;
+ LIBARDOUR_API extern DebugBits Graph;
+ LIBARDOUR_API extern DebugBits Destruction;
+ LIBARDOUR_API extern DebugBits MTC;
+ LIBARDOUR_API extern DebugBits LTC;
+ LIBARDOUR_API extern DebugBits Transport;
+ LIBARDOUR_API extern DebugBits Slave;
+ LIBARDOUR_API extern DebugBits SessionEvents;
+ LIBARDOUR_API extern DebugBits MidiIO;
+ LIBARDOUR_API extern DebugBits MackieControl;
+ LIBARDOUR_API extern DebugBits MidiClock;
+ LIBARDOUR_API extern DebugBits Monitor;
+ LIBARDOUR_API extern DebugBits Solo;
+ LIBARDOUR_API extern DebugBits AudioPlayback;
+ LIBARDOUR_API extern DebugBits Panning;
+ LIBARDOUR_API extern DebugBits LV2;
+ LIBARDOUR_API extern DebugBits CaptureAlignment;
+ LIBARDOUR_API extern DebugBits PluginManager;
+ LIBARDOUR_API extern DebugBits AudioUnits;
+ LIBARDOUR_API extern DebugBits ControlProtocols;
+ LIBARDOUR_API extern DebugBits CycleTimers;
+ LIBARDOUR_API extern DebugBits MidiTrackers;
+ LIBARDOUR_API extern DebugBits Layering;
+ LIBARDOUR_API extern DebugBits TempoMath;
+ LIBARDOUR_API extern DebugBits TempoMap;
+ LIBARDOUR_API extern DebugBits OrderKeys;
+ LIBARDOUR_API extern DebugBits Automation;
+ LIBARDOUR_API extern DebugBits WiimoteControl;
+ LIBARDOUR_API extern DebugBits Ports;
+ LIBARDOUR_API extern DebugBits AudioEngine;
+ LIBARDOUR_API extern DebugBits Soundcloud;
+ LIBARDOUR_API extern DebugBits Butler;
}
}