From 329c59741c7c5e9fbe2debdbe3b0648399da3248 Mon Sep 17 00:00:00 2001 From: egfinch Date: Wed, 3 Dec 2025 19:14:06 -0800 Subject: [PATCH 1/2] Add CTQ - Concurent Task Queue --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 424d6a8..ef411bb 100644 --- a/README.md +++ b/README.md @@ -183,6 +183,7 @@ C++ Benchmark Authoring Library/Framework. * [Threading Building Blocks](https://www.threadingbuildingblocks.org/) - Threading Building Blocks (TBB) is a C++ template library developed by Intel for parallel programming on multi-core processors. Using TBB, a computation is broken down into tasks that can run in parallel. The library manages and schedules threads to execute these tasks. * [execq](https://github.com/Alkenso/execq) - Smart queue that executes tasks in threadpool-like manner (serial / concurrent) in C++11. * [concurrencpp](https://github.com/David-Haim/concurrencpp) - A general concurrency library containing tasks, executors, timers and C++20 coroutines to rule them all. +* [ctq](https://github.com/egfinch/ctq) - Concurent Task Queue ### Parsing & Serialization From 189fcb6f6594b2075ebd39edfc442d74d3d40bc5 Mon Sep 17 00:00:00 2001 From: Eugene Date: Wed, 3 Dec 2025 19:19:46 -0800 Subject: [PATCH 2/2] Update README.md typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ef411bb..8503aae 100644 --- a/README.md +++ b/README.md @@ -183,7 +183,7 @@ C++ Benchmark Authoring Library/Framework. * [Threading Building Blocks](https://www.threadingbuildingblocks.org/) - Threading Building Blocks (TBB) is a C++ template library developed by Intel for parallel programming on multi-core processors. Using TBB, a computation is broken down into tasks that can run in parallel. The library manages and schedules threads to execute these tasks. * [execq](https://github.com/Alkenso/execq) - Smart queue that executes tasks in threadpool-like manner (serial / concurrent) in C++11. * [concurrencpp](https://github.com/David-Haim/concurrencpp) - A general concurrency library containing tasks, executors, timers and C++20 coroutines to rule them all. -* [ctq](https://github.com/egfinch/ctq) - Concurent Task Queue +* [ctq](https://github.com/egfinch/ctq) - Concurrent Task Queue ### Parsing & Serialization