Answers for "C++ check if thread is joinable"

C++
0

C++ check if thread is joinable

if (thread1.joinable())
{
  thread1.join();
}
Posted by: Guest on March-19-2022

Browse Popular Code Answers by Language