Add io-uring driver (#515)

This commit is contained in:
Nikolay Kim 2025-03-11 23:31:41 +05:00 committed by GitHub
parent 47afec7351
commit 60a686b2f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
38 changed files with 1700 additions and 277 deletions

View file

@ -1,6 +1,6 @@
# Changes
## [0.4.26] - 2025-03-xx
## [0.4.26] - 2025-03-12
* Add "neon" runtime support

View file

@ -154,6 +154,7 @@ impl Arbiter {
.try_send(ArbiterCommand::Execute(Box::pin(future)));
}
#[rustfmt::skip]
/// Send a function to the Arbiter's thread. This function will be executed asynchronously.
/// A future is created, and when resolved will contain the result of the function sent
/// to the Arbiters thread.

View file

@ -259,7 +259,7 @@ mod neon {
/// completes.
pub fn block_on<F: Future<Output = ()>>(fut: F) {
log::info!(
"Starting compio runtime, driver {:?}",
"Starting neon runtime, driver {:?}",
ntex_neon::driver::DriverType::current()
);
let rt = Runtime::new().unwrap();