View on GitHub

CC

CC practice and cheat sheets

Threads

class X
{
public:
void do_lengthy_work();
};
X my_x;
std::thread t(&X::do_lengthy_work,&my_x);