Capture a STD::unique_loc<std::mutex> in a lambda function which is used as a thread function

634 Views Asked by At

Is there any potential problem if capturing a STD::unique_loc<std::mutex> in a lambda function which is used as a thread function? e.g:

int foo()
{
    std::mutex mtxRunOver;
    std::unique_lock <std::mutex> ulkRunOver(mtxRunOver);
    std::thread workThread([&](){
        workThread.detach();
        do_some_process_for_seconds();
        }
    );

    do_some_work();
}
0

There are 0 best solutions below