diff options
author | Blaž Hrastnik | 2020-08-11 14:19:23 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-08-11 14:19:23 +0000 |
commit | 4733afa6c2c2b41d70b2d76748b4feb374b0ba77 (patch) | |
tree | 937a9572b5416e04c3323a8b98ad9cc3077677bf /helix-term/src/line.rs | |
parent | 8681d472928ff3d91508e11deda19b16c4694446 (diff) |
Update dependencies.
smol 0.3 makes setup a whole lot easier.
Diffstat (limited to 'helix-term/src/line.rs')
-rw-r--r-- | helix-term/src/line.rs | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/helix-term/src/line.rs b/helix-term/src/line.rs index 58d4c9d8..b4b88655 100644 --- a/helix-term/src/line.rs +++ b/helix-term/src/line.rs @@ -64,32 +64,7 @@ fn main() -> Result<()> { let mut stdout = stdout(); execute!(stdout, EnableMouseCapture)?; - use std::thread; - - // Same number of threads as there are CPU cores. - let num_threads = num_cpus::get().max(1); - - // A channel that sends the shutdown signal. - let (s, r) = piper::chan::<()>(0); - let mut threads = Vec::new(); - - // Create an executor thread pool. - for _ in 0..num_threads { - // Spawn an executor thread that waits for the shutdown signal. - let r = r.clone(); - threads.push(thread::spawn(move || smol::run(r.recv()))); - } - - // No need to `run()`, now we can just block on the main future. - smol::block_on(print_events()); - - // Send a shutdown signal. - drop(s); - - // Wait for threads to finish. - for t in threads { - t.join().unwrap(); - } + smol::run(print_events()); execute!(stdout, DisableMouseCapture)?; |