Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 802 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 802 Bytes

task_system

task_system provides a task scheduler for modern C++.

  • The scheduler manages an array of concurrent queues
  • A task, when scheduled, is enqueued onto one of queues
  • A pool of threads executes ready tasks, potentially stealing tasks for each other's queues

Reference