There is a problem in the TRDP timing for VxWorks. In the vos_getTime function implementation for VxWorks, "CLOCK_REALTIME" is used instead of "CLOCK_MONOTONIC". This has as consequence that the timings get all wrong when the realtime clock is synchronized through NTP or other.
For example, if the clock is advanced by 10s, the published process data will be delayed by 10s too.
A possible fix is replacing:
clock_gettime(CLOCK_REALTIME, &myTime);
by:
clock_gettime(CLOCK_MONOTONIC, &myTime);
We tested the functionality with the latter and it fixed the problem.
It should be checked, whether CLOCK_MONOTONIC is available. That was not the case for older vxWorks versions.