blob: 1e32cb0359f78e6a2b7b915ff73bec8f965436d1 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include <lib/async/time.h>
#include <lib/zx/time.h>
namespace async {
// Returns the current time in the dispatcher's timebase.
// For most loops, this is generally obtained from |ZX_CLOCK_MONOTONIC|
// but certain loops may use a different timebase, notably for testing.
inline zx::time Now(async_t* async) {
return zx::time(async_now(async));
}
} // namespace async