Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 691 Bytes

File metadata and controls

28 lines (24 loc) · 691 Bytes

My Thread Pool

Overview

This project implements a simple thread pool in C++ using modern C++11 features. The thread pool allows for the creation of a fixed number of worker threads that can execute tasks concurrently.

Build Instructions

  1. Install CMake (version 3.10 or higher).
  2. Create a build directory:
    mkdir build && cd build
  3. Run CMake to configure the project:
    cmake ..
  4. Build the project:
    make

Running Tests

After building the project, you can run the test executables located in the build/test/ directory:

./test_day1_basic

License

This project is licensed under the MIT License.