summary refs log blame commit diff
path: root/async_core/src/lib.rs
blob: e577bb5d05306e57520cdf9556823243c6edbbf5 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                                   
            

                         

                                       
// 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;