#cpu #multi-thread #process #thread

multithreading

A simple multithreading library in Rust

7 releases

0.3.0 Sep 25, 2024
0.2.0 May 20, 2024
0.1.4 Mar 26, 2024

#640 in Concurrency

Download history 5/week @ 2025-02-11 2/week @ 2025-02-18

379 downloads per month

MIT license

8KB
175 lines

Multithreading Library Written In Rust


A simple multithreading library written in rust.

Usage

use multithreading::ThreadPool;

fn main() {
    let pool = ThreadPool::new(<number_of_threads_to_use>);
    for i in 0..10 {
        pool.execute(move || {
            // Do something
            println!("Task {}", i);
        });
    }
}

if you want to use all available threads, you can use the crate num_cpus to get the number of available threads.

use multithreading::ThreadPool;
use num_cpus;

fn main() {
    let pool = ThreadPool::new(num_cpus::get());
    for i in 0..10 {
        pool.execute(move || {
            // Do something
            println!("Task {}", i);
        });
    }
}

No runtime deps