Skip to content

Commit

Permalink
move executor.rs to its own directory
Browse files Browse the repository at this point in the history
Create a home for other modules to be added to the executor module.
  • Loading branch information
trtsl committed Apr 30, 2021
1 parent e9dcb04 commit 38baf33
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion glommio/src/executor.rs → glommio/src/executor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@

#![warn(missing_docs, missing_debug_implementations)]

mod multitask;

use std::{
cell::RefCell,
collections::{hash_map::Entry, BinaryHeap},
Expand All @@ -47,7 +49,6 @@ use futures_lite::pin;
use scoped_tls::scoped_thread_local;

use crate::{
multitask,
parking,
sys,
task::{self, waker_fn::waker_fn},
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion glommio/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,6 @@ pub mod controllers;
mod error;
mod executor;
pub mod io;
mod multitask;
pub mod net;
mod shares;
pub mod sync;
Expand Down

0 comments on commit 38baf33

Please sign in to comment.