Searched refs:JoinHandle (Results 1 – 6 of 6) sorted by relevance
3 thread::{self, JoinHandle},50 let mut handles: Vec<JoinHandle<()>> = Vec::new(); in synchronous_benchmark()100 let mut handles: Vec<JoinHandle<()>> = Vec::new(); in non_blocking_benchmark()
57 use std::thread::JoinHandle;106 _guard: Option<JoinHandle<()>>,260 fn new(handle: JoinHandle<()>, sender: Sender<Msg>, shutdown: Sender<()>) -> Self { in new() argument451 let mut join_handles: Vec<JoinHandle<()>> = Vec::with_capacity(10); in multi_threaded_writes()
70 pub(crate) fn worker_thread(mut self) -> std::thread::JoinHandle<()> { in worker_thread() argument
3 use std::thread::{self, JoinHandle};8 handle: Option<JoinHandle<()>>,
9 use std::thread::{self, JoinHandle};111 thread: Option<JoinHandle<()>>, in signals_block_wait()
869 impl<T> AsHandle for std::thread::JoinHandle<T> { implementation877 impl<T> IntoHandle for std::thread::JoinHandle<T> { implementation885 impl<T> From<std::thread::JoinHandle<T>> for OwnedHandle {887 fn from(owned: std::thread::JoinHandle<T>) -> Self { in from()