blob: 09dfb0e14235104918e89890ab6b4db60ccc596e [file] [log] [blame]
bungeman@google.combe9ad4e2011-06-07 19:16:02 +00001#ifndef SkBenchSysTimer_DEFINED
2#define SkBenchSysTimer_DEFINED
3
4//Time
5#include <time.h>
6
7class BenchSysTimer {
8public:
9 void startWall();
10 void startCpu();
11 double endCpu();
12 double endWall();
13private:
14 timespec fCpu;
15 timespec fWall;
16};
17
18#endif
19