05-22-2016 09:22 PM
Hello,
can I use Rendezvous only in sigle pass test mode? see my example attached, I created a new thread and wait them end use Rendezvous,but not success,pls help check,thanks.
05-23-2016 03:44 AM
Hi,
Is there a particular reason you want to use Rendezvous?
Why not wait for the thread to finish by using the Thread option on Wait? This can be acheived by:
(1) Calling the subsequence "test1" as a new thread and storing an object reference, eg. Locals.objrefTest1
(2) Add a Wait step and select the Thread option, Specify by Object Reference to the Thread - "Locals.objrefTest1"
See the example attached.
Regards,
Charlie
Charlie Rodway | Principal Software Engineer | Certified TestStand Architect (CTA)
Computer Controlled Solutions Ltd | NI Silver Alliance Partner | GDevCon#1 Sponsor
05-23-2016 08:11 PM
Hello,
Thanks,I know the way you mentioned.
I just want to know why Rendezvous only can wait the threads from different sockets,but can 't wait the threads from the same socket. from help file,I also can't get the answer.
Regards
Tang
05-24-2016 03:43 AM
I know the reason,I should aslo add Rendezvous wait step at the end of the new thread.