test_threads_main.cpp 200 B

1234567891011
  1. #include "test_threads.h"
  2. #include <future>
  3. #include <functional>
  4. #include <chrono>
  5. using namespace std::chrono_literals;
  6. int main(int argc, char** argv) {
  7. int rc = test_threads();
  8. return rc;
  9. }