It looks like it's repeatedly polling the filesystem for time changes. Perhaps this is QFileSystemWatcher? But I know that at least for the older QPA plugin that was upstreamed, we implemented QFileSystemWatcher properly using Haiku-native path watching. Is that not preserved here?
I noticed that when Qt apps were open, lots of messages like these appear in the syslog:
So I ran an
strace
on Qt Creator, and found that it does a lot of stuff like this, every second or so:It looks like it's repeatedly polling the filesystem for time changes. Perhaps this is
QFileSystemWatcher
? But I know that at least for the older QPA plugin that was upstreamed, we implemented QFileSystemWatcher properly using Haiku-native path watching. Is that not preserved here?