04-11-2013 11:06 AM
Hello,
Is there a CVI equivalent to LabVIEW's rendevous function for multithreading? Or would OS primitives need to be used to accomplish this?
Thank you,
Solved! Go to Solution.
04-11-2013 04:22 PM
I don't seem to remember a direct CVI equivalent of LV rendezvous. You could use a thread safe variable to accomplish this task: starting from zero, each thread can increment variable value by one and then wait until the variable has reached the desired value (i.e. the stated number of threads is paused waiting on the variable).