blob: b3fafea1fb83427a6368a6eeb6369079ca467a0e [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 tiembase, notably for testing.
inline zx::time Now(async_t* async) {
return zx::time(async_now(async));
}
} // namespace async