wmmon: Properly compute height of system load window.
commit7354c4df533d6cb7bcefccbcfd24e88fc7e5cf30
authorDoug Torrance <dtorrance@piedmont.edu>
Tue, 10 Apr 2018 20:14:19 +0000 (10 16:14 -0400)
committerCarlos R. Mafra <crmafra@gmail.com>
Tue, 10 Apr 2018 23:06:49 +0000 (11 00:06 +0100)
treef9f1f990b4a679cad7168e5444aa0edb18823532
parentd56480c377ac042979ea47525982220f36e91dee
wmmon: Properly compute height of system load window.

Previously, we looped through the history and added 100 whenever we found
a larger value.  This has a number of problems.  In particular,
* We get a maximum possible value of 5500 (100 * the number of values in
  the history).  It is certainly possible to have a system load north of
  this on modern systems.
* If the system load in history were to jump by more than 100 in a single
  step, then we wouldn't be adding enough.  For example, suppose the
  system load in history is 175, and our height was previously computed
  to be 200.  Suppose the next value in history is 320.  We would add
  100 to get a new height of 300, which isn't sufficient to display the
  320.

The fix is simple -- replace the if statement with a while loop, i.e.,
continue adding 100 until we get a height that fits our value.
wmmon/wmmon.c