Skip to content

kononovk/thread-pool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Thread pool

Thread pool implementation

utils::thread_pool tp(1);
bool runned = false;
auto future = tp.submit([&runned]() -> bool {
  runned = true;
  return true;
});
assert(future.get() == true);
assert(runned == true);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published