summary refs log tree commit diff
path: root/async_core/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'async_core/src/lib.rs')
-rw-r--r--async_core/src/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/async_core/src/lib.rs b/async_core/src/lib.rs
new file mode 100644
index 0000000..96cdcf1
--- /dev/null
+++ b/async_core/src/lib.rs
@@ -0,0 +1,11 @@
+// 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;
+
+pub use eventfd::EventFd;