You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Modern C++ thread-pool scheduler that distributes work across a fixed set of `st
8
8
9
9
## Description
10
10
11
-
The scheduler exposes a minimal API—construct it with the desired number of worker threads and call `submit()` with any callable. Pending tasks live in a mutex-protected queue, while workers block on a condition variable until work arrives or shutdown is requested. The design is compact enough for teaching and prototyping but still follows best practices for synchronization and RAII-based shutdown.
11
+
The scheduler exposes a minimal API. Construct it with the desired number of worker threads and call `submit()` with any callable. Pending tasks live in a mutex-protected queue, while workers block on a condition variable until work arrives or shutdown is requested. The design is compact enough for teaching and prototyping but still follows best practices for synchronization and RAII-based shutdown.
0 commit comments