1 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 */ 8#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