From 9962f12c5612c76f4d2e7b73d2f149fd9ca6a125 Mon Sep 17 00:00:00 2001 From: Manjunath Shetty Date: Tue, 14 Aug 2018 00:11:16 +0530 Subject: [PATCH] Added thread pool library (#2061) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 06c1a648..558a9dda 100644 --- a/README.md +++ b/README.md @@ -630,6 +630,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [semaphore](https://github.com/kamilsk/semaphore) - Semaphore pattern implementation with timeout of lock/unlock operations based on channel and context. * [semaphore](https://github.com/marusama/semaphore) - Fast resizable semaphore implementation based on CAS (faster than channel-based semaphore implementations). * [stl](https://github.com/ssgreg/stl) - Software transactional locks based on Software Transactional Memory (STM) concurrency control mechanism. +* [threadpool](https://github.com/shettyh/threadpool) - Golang threadpool implementation. * [tunny](https://github.com/Jeffail/tunny) - Goroutine pool for golang. * [worker-pool](https://github.com/vardius/worker-pool) - goworker is a Go simple async worker pool. * [workerpool](https://github.com/gammazero/workerpool) - Goroutine pool that limits the concurrency of task execution, not the number of tasks queued.