Hi!
It is possible with c++0x established if a thread is active or alive?
I thought use the std::thread::get_id() but it's a good idea?
get_id() should raise an exception if I call it on a pointer std::thread that is no longer any thread?
You could try to join the thread.
Why do you need to know this?
Because I want to check how many threads are still active in my program.
Under Linux, "ps -eLf" can tell you the number of threads.