xref: /haiku/src/bin/debug/time_stats/time_stats.h (revision f2b4344867e97c3f4e742a1b4a15e6879644601a)
1 /*
2  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef TIME_STATS_H
6 #define TIME_STATS_H
7 
8 #include <SupportDefs.h>
9 
10 
11 void	do_scheduling_analysis(bigtime_t startTime, bigtime_t endTime,
12 			size_t bufferSize);
13 void	do_timing_analysis(int argc, const char* const* argv,
14 			bool schedulingAnalysis, int outFD, size_t bufferSize);
15 
16 
17 #endif	// TIME_STATS_H
18