xref: /haiku/src/bin/debug/time_stats/time_stats.h (revision b671e9bbdbd10268a042b4f4cc4317ccd03d105e)
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