11-07-2014 03:53 AM
In the synchronization Settings,
if a Lock is used for a step & the Batch Syncronization is set to Serial (one thread at a time)
the AutoSchedule.seq(Sequntial-Sub seq ) is an example for this.
11-07-2014 09:02 AM - edited 11-07-2014 09:04 AM
What exactly is the issue with this? Lock and Batch Sync Serial do not do exactly the same thing so it's not surprising they don't have exactly the same behavior. The order in which threads are woken when the lock becomes available is likely different for example. Batch Sync wakes threads in test socket order, while a lock is first in first out.
-Doug
11-10-2014 06:39 AM
thanks Doug