Linux High CPU usage on Xubuntu 19.10 while Idle
#16
That's entirely bad solution.

run: sudo udevadm monitor

on a terminal next to kodi

on the terminal and see if you get events all the time. The only reason:

Code:
void CPeripheralBusUSB::Process(void)
{
  bool bUpdated(false);
  ScanForDevices();
  while (!m_bStop)
  {
    bUpdated = WaitForUpdate();
    if (bUpdated && !m_bStop)
      ScanForDevices();
  }
}

Can eat CPU is that WaitForUpdate does not block. So find out, what happens in this method.
First decide what functions / features you expect from a system. Then decide for the hardware. Don't waste your money on crap.
Reply


Messages In This Thread
RE: High CPU usage on Xubuntu 19.10 while Idle - by fritsch - 2020-01-11, 09:21
Logout Mark Read Team Forum Stats Members Help
High CPU usage on Xubuntu 19.10 while Idle0