| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 4 * | 3 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 7 */ | 6 */ |
| 8 #ifndef SkBenchSysTimer_DEFINED | 7 #ifndef SysTimer_DEFINED |
| 9 #define SkBenchSysTimer_DEFINED | 8 #define SysTimer_DEFINED |
| 10 | 9 |
| 11 //Time | |
| 12 #include <mach/mach.h> | 10 #include <mach/mach.h> |
| 13 #include <mach/mach_time.h> | 11 #include <mach/mach_time.h> |
| 14 | 12 |
| 15 class BenchSysTimer { | 13 class SysTimer { |
| 16 public: | 14 public: |
| 17 void startWall(); | 15 void startWall(); |
| 18 void startCpu(); | 16 void startCpu(); |
| 19 double endCpu(); | 17 double endCpu(); |
| 20 double endWall(); | 18 double endWall(); |
| 21 private: | 19 private: |
| 22 time_value_t fStartCpu; | 20 time_value_t fStartCpu; |
| 23 uint64_t fStartWall; | 21 uint64_t fStartWall; |
| 24 }; | 22 }; |
| 25 | 23 |
| 26 #endif | 24 #endif |
| OLD | NEW |