blob: 3d263848b5c657f420c701b7e4fa2decd2b071a5 [file] [log] [blame]
QUICHE team53f08a32019-04-15 14:47:31 -04001// Copyright 2013 The Chromium 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#ifndef QUICHE_EPOLL_SERVER_PLATFORM_API_EPOLL_TIME_H_
6#define QUICHE_EPOLL_SERVER_PLATFORM_API_EPOLL_TIME_H_
7
bnc5231ee22019-04-15 19:02:13 -07008#include "net/tools/epoll_server/platform/impl/epoll_time_impl.h"
QUICHE team53f08a32019-04-15 14:47:31 -04009
10namespace epoll_server {
11
danzh3855d172019-04-18 13:00:06 -070012inline int64_t WallTimeNowInUsec() { return WallTimeNowInUsecImpl(); }
QUICHE team53f08a32019-04-15 14:47:31 -040013
14} // namespace epoll_server
15
16#endif // QUICHE_EPOLL_SERVER_PLATFORM_API_EPOLL_TIME_H_