Is there a way of doing a non-blocking pthread_join? Some sort of timed join would be good to.
I'll try to clarify the question:
I'm coding the shutdown of a multithreaded server. If everything goes as it should all the threads exit by their own, but there's a small chance that a thread gets stuck.
In this case it would be convenient to have a non-blocking join so I could do something like this:
foreach thread do nb_pthread_join(); if still running pthread_cancel();
I can think more cases where a a non-bloking join would be useful.
As it seems there is no such a function so I have already coded a workaround, but it's not as simple as I would like.