diff options
author | Wolfy-J <[email protected]> | 2018-06-05 23:28:18 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-05 23:28:18 +0300 |
commit | 28a5d8c3b6b7763e510617eeb8d483bfc6698b04 (patch) | |
tree | 50c897d4f2afef7fe96637ce1763084c588002f5 /static_pool.go | |
parent | 5c45a050ae211ae565cbc8903adda7900ab06577 (diff) |
thread safe buffer for worker errors
Diffstat (limited to 'static_pool.go')
-rw-r--r-- | static_pool.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static_pool.go b/static_pool.go index c0075c8f..cc2b38ab 100644 --- a/static_pool.go +++ b/static_pool.go @@ -30,7 +30,7 @@ type StaticPool struct { // active task executions tasks sync.WaitGroup - // workers circular allocation buffer + // workers circular allocation errBuffer free chan *Worker // protects state of worker list, does not affect allocation |