summary refs log tree commit diff
path: root/async_core/src/lib.rs
blob: e577bb5d05306e57520cdf9556823243c6edbbf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! Extensions using cros_async and futures-rs to add asynchronous operations to sys_util features.
//! Provides basic `Futures` implementations for some of the interfaces provided by the `sys_util`
//! crate.

mod eventfd;
mod timerfd;

pub use eventfd::EventFd;
pub use timerfd::Error as TimerFdError;
pub use timerfd::TimerFd;