threadfin 0.1.2

A thread pool for running multiple tasks on a configurable group of threads.
Documentation
use std::{
    task::Waker,
    thread::{self, Thread},
};

use once_cell::sync::Lazy;

/// Creates a dummy waker that does nothing.
pub(crate) fn empty_waker() -> Waker {
    static WAKER: Lazy<Waker> = Lazy::new(|| waker_fn::waker_fn(move || {}));

    WAKER.clone()
}

/// Creates a waker that unparks the current thread.
pub(crate) fn current_thread_waker() -> Waker {
    thread_waker(thread::current())
}

/// Creates a waker that unparks a thread.
pub(crate) fn thread_waker(thread: Thread) -> Waker {
    waker_fn::waker_fn(move || thread.unpark())
}