blob: 1eca909e269e168377054747467922ea6e5275d9 [file] [log] [blame]
mtklein3b5b7842015-10-23 06:40:33 -07001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7#ifndef SysTimer_DEFINED
8#define SysTimer_DEFINED
9
10#include <time.h>
11
12class SysTimer {
13public:
14 void startWall();
15 void startCpu();
16 double endCpu();
17 double endWall();
18private:
19 timespec fCpu;
20 timespec fWall;
21};
22
23#endif