blob: de793f35a74fb2f2f9f815b1fe59d9b1f0ec4a04 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
bungeman@google.combe9ad4e2011-06-07 19:16:02 +00008#ifndef SkBenchSysTimer_DEFINED
9#define SkBenchSysTimer_DEFINED
10
11//Time
12#include <time.h>
13
14class BenchSysTimer {
15public:
16 void startWall();
17 void startCpu();
18 double endCpu();
19 double endWall();
20private:
21 timespec fCpu;
22 timespec fWall;
23};
24
25#endif
26