Skip to content

Commit

Permalink
WIP: open_at
Browse files Browse the repository at this point in the history
  • Loading branch information
problame committed Oct 17, 2023
1 parent a5aafef commit de382f5
Show file tree
Hide file tree
Showing 6 changed files with 460 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions tokio-epoll-uring/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ license = "MIT OR Apache-2.0"
[dependencies]
futures = "0.3.28"
io-uring = "0.6.0"
libc = "0.2.147"
once_cell = "1.18.0"
scopeguard = "1.1.0"
thiserror = "1.0.44"
Expand Down
4 changes: 4 additions & 0 deletions tokio-epoll-uring/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,12 @@ pub use system::lifecycle::thread_local::{thread_local_system, Handle};
pub use system::lifecycle::System;
pub use system::submission::op_fut::Error as SystemError;

pub use tokio_uring::buf::{IoBuf, IoBufMut};

pub(crate) mod util;

pub use crate::system::submission::op_fut::Error;

#[doc(hidden)]
pub mod env_tunables {
pub(crate) static YIELD_TO_EXECUTOR_IF_READY_ON_FIRST_POLL: once_cell::sync::Lazy<bool> =
Expand Down
1 change: 1 addition & 0 deletions tokio-epoll-uring/src/ops/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
pub use crate::system::submission::op_fut::Op;

pub mod nop;
pub mod open_at;
pub mod read;
Loading

0 comments on commit de382f5

Please sign in to comment.