incomplete merge of master into windows (requires upcoming changes to master to be...
[ardour.git] / libs / ardour / ardour / debug.h
1 /*
2     Copyright (C) 2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_debug_h__
21 #define __ardour_debug_h__
22
23 #include <stdint.h>
24
25 #include <sstream>
26
27 #include "pbd/debug.h"
28
29 namespace PBD {
30         namespace DEBUG {
31                 extern uint64_t MidiSourceIO;
32                 extern uint64_t MidiPlaylistIO;
33                 extern uint64_t MidiDiskstreamIO;
34                 extern uint64_t SnapBBT;
35                 extern uint64_t Configuration;
36                 extern uint64_t Latency;
37                 extern uint64_t Peaks;
38                 extern uint64_t Processors;
39                 extern uint64_t ProcessThreads;
40                 extern uint64_t Graph;
41                 extern uint64_t Destruction;
42                 extern uint64_t MTC;
43                 extern uint64_t LTC;
44                 extern uint64_t Transport;
45                 extern uint64_t Slave;
46                 extern uint64_t SessionEvents;
47                 extern uint64_t MidiIO;
48                 extern uint64_t MackieControl;
49                 extern uint64_t MidiClock;
50                 extern uint64_t Monitor;
51                 extern uint64_t Solo;
52                 extern uint64_t AudioPlayback;
53                 extern uint64_t Panning;
54                 extern uint64_t LV2;
55                 extern uint64_t CaptureAlignment;
56                 extern uint64_t PluginManager;
57                 extern uint64_t AudioUnits;
58                 extern uint64_t ControlProtocols;
59                 extern uint64_t CycleTimers;
60                 extern uint64_t MidiTrackers;
61                 extern uint64_t Layering;
62                 extern uint64_t TempoMath;
63                 extern uint64_t TempoMap;
64                 extern uint64_t OrderKeys;
65                 extern uint64_t Automation;
66                 extern uint64_t WiimoteControl;
67                 extern uint64_t Ports;
68         }
69 }
70
71 #endif /* __ardour_debug_h__ */
72