Threadx timer limitations?

Hi,
We are using NetOs 6.0.
Can anyone please let me know the limitations of threadx timers?
[Like we cannot have socket calls in the timer expiry function…]

As it will be running at highest priority is it advisable to suspend/resume threads in timer expiry function?

Thanks in advance.

Regards.

If you put one at high priority, all the other threads will slow down accordingly. The thread priority doesn’t work all that well. I ended up making all the threads the same priority, then they all worked.

-Erik