Linux Thread Question

I have an app that uses a number of threads and on Mac and Windows they app stays responsive when the threads are working. In Linux, hoo boy, the UI is jerky and I will occasionally get the “close app or wait for it to respond” dialog.

Anyone have any suggestions on what to look for?

I remember there was a previous talk about this. Perhaps it’s in feedback?

You could try to sleep the thread some more on targetlinux perhaps with loop bounds of

#if tagetlinux
If i mod 100 = 0 then
Self.sleep(10,false)
End if
#endif