gitextract_vd_i4h3q/ ├── .clang-format ├── .github/ │ └── workflows/ │ └── common.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake/ │ └── NotEnoughStandards.cmake.in ├── include/ │ └── nes/ │ ├── named_mutex.hpp │ ├── named_semaphore.hpp │ ├── pipe.hpp │ ├── process.hpp │ ├── semaphore.hpp │ ├── shared_library.hpp │ ├── shared_memory.hpp │ └── thread_pool.hpp └── tests/ ├── common.hpp ├── library.cpp ├── process.cpp ├── process_other.cpp └── thread_pool_test.cpp