Hi, I have 3 tasks which need to be periodically executed at 1min, 2min and 4min respectively. I cannot use the os_itv_wait because the task internally use os_dly_wait. So at the end of each task i call the os_dly_wait with parameter as the required schedule time.
However with the above approach the tasks are not executed at the exact time needed, but instead the behaviour is random. Sometimes a task2 (2 min) executes in 1min 30 sec or task 3 executes in 2mins itself!!!
Please help!!! Its driving me nuts.