Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 463 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 463 Bytes

threadpool

An ultra simple thread pool implementation in Rust.

This project implements the spawn with static lifetime and scope_spawn with scoped lifetime.

Todo

  • join function.
  • more unit test
  • more example in src/bin/

Reference

  1. Rust Course.
  2. Crossbeam