timer_utils.c 859 B

12345678910111213141516171819202122232425
  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. #include "timer_utils.h"
  6. void StartTimer(ClockTimerState* ct) {
  7. clock_gettime(CLOCK_REALTIME, &ct->start_time);
  8. }
  9. void StopTimer(ClockTimerState* ct) {
  10. clock_gettime(CLOCK_REALTIME, &ct->end_time);
  11. }
  12. uint32_t GetDurationMsecs(ClockTimerState* ct) {
  13. uint64_t start = ((uint64_t) ct->start_time.tv_sec * 1000000000 +
  14. (uint64_t) ct->start_time.tv_nsec);
  15. uint64_t end = ((uint64_t) ct->end_time.tv_sec * 1000000000 +
  16. (uint64_t) ct->end_time.tv_nsec);
  17. uint64_t duration_msecs = (end - start) / 1000000U; /* Nanoseconds ->
  18. * Milliseconds. */
  19. return (uint32_t) duration_msecs;
  20. }