I have a GUI application developed in Qt for a embedded system, I have many signal/slot Qt::queuedconnections
present in my application. After running my application over a long period of time I am observing that the CPU usage of my system is linearly increasing over period of time, which is causing my application to respond slower.
Am not disconnecting these signal/slots connections. The increase in CPU usage is anywhere related to dynamically creating signal/slots ? Is there any method or way to test the signal/slot memory or CPU usage. ?
I doubt the slow comes from you Signals/Slots since (quoted from the doc):