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
11void	do_scheduling_analysis(bigtime_t startTime, bigtime_t endTime,
12			size_t bufferSize);
13void	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