Hi
I am considering using OpenMP for multithreading in C++. But I wonder if there is a way tell a thread not to wait for other concurrent thread and continue with my program? (Maybe I can cancel/kill other threads?)
I am aware of the existence of "nowait" clause, but I want the decision of "wait" or "not to wait" to be done dynamically (The program will decide depending on results of the process I am doing).
I hope I can get some advices on this.
Thanks in advance.