Gaurav Shah | cc1dd99 | 2010-02-12 11:21:18 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 | * Use of this source code is governed by a BSD-style license that can be |
| 3 | * found in the LICENSE file. |
| 4 | */ |
| 5 | |
| 6 | #ifndef VBOOT_REFERENCE_TIMER_UTILS_H_ |
| 7 | #define VBOOT_REFERENCE_TIMER_UTILS_H_ |
| 8 | |
vbendeb | 3ecaf77 | 2010-06-24 16:19:53 -0700 | [diff] [blame^] | 9 | #ifndef _MSC_VER |
Gaurav Shah | cc1dd99 | 2010-02-12 11:21:18 -0800 | [diff] [blame] | 10 | #include <inttypes.h> |
vbendeb | 3ecaf77 | 2010-06-24 16:19:53 -0700 | [diff] [blame^] | 11 | #endif |
| 12 | |
Gaurav Shah | cc1dd99 | 2010-02-12 11:21:18 -0800 | [diff] [blame] | 13 | #include <time.h> |
| 14 | |
| 15 | typedef struct ClockTimer { |
| 16 | struct timespec start_time; |
| 17 | struct timespec end_time; |
| 18 | } ClockTimerState; |
| 19 | |
| 20 | /* Start timer and update [ct]. */ |
| 21 | void StartTimer(ClockTimerState* ct); |
| 22 | |
| 23 | /* Stop timer and update [ct]. */ |
| 24 | void StopTimer(ClockTimerState* ct); |
| 25 | |
| 26 | /* Get duration in milliseconds. */ |
| 27 | uint32_t GetDurationMsecs(ClockTimerState* ct); |
| 28 | |
| 29 | #endif /* VBOOT_REFERENCE_TIMER_UTILS_H_ */ |