Don't do anything if time between updates is less than one tick.

This commit is contained in:
Ben Gras 2006-03-28 23:44:10 +00:00
parent dd19ec55ea
commit fcbfcfcd07

View file

@ -118,6 +118,8 @@ void print_procs(int maxlines,
int p, nprocs, tot=0;
int idleticks = 0, kernelticks = 0, systemticks = 0;
if(dt < 1) return;
for(p = nprocs = 0; p < PROCS; p++) {
if(proc2[p].p_rts_flags & SLOT_FREE)
continue;