Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 555 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 555 Bytes

ThreadPool

This a reference implementation of the Thread Pool design pattern.

The implementation satisfy the following requirements:

  • Easily portable over different platforms.
  • Baseline, didactical and clean implementation (no exoteric extras).
  • Use of C++11 shared pointers and syntax.
  • Fast and efficient.
  • No external dependencies, just pure C/C++.

Supported platforms:

  • Posix (Linux, OSX, Unix...).

###Links: