not needed
This commit is contained in:
parent
e3c542d8a3
commit
13b962b6c9
8
top.c
8
top.c
@ -1746,12 +1746,6 @@ static void frame_states (proc_t **ppt, int show)
|
||||
unsigned total, running, sleeping, stopped, zombie;
|
||||
HIST_t *hist_tmp;
|
||||
|
||||
if (!hist_sav) { // 1st time through
|
||||
hist_siz = 100;
|
||||
hist_sav = alloc_c(sizeof(HIST_t)*hist_siz);
|
||||
hist_new = alloc_c(sizeof(HIST_t)*hist_siz);
|
||||
}
|
||||
|
||||
// reuse memory each time around
|
||||
hist_tmp = hist_sav;
|
||||
hist_sav = hist_new;
|
||||
@ -1783,7 +1777,7 @@ static void frame_states (proc_t **ppt, int show)
|
||||
break;
|
||||
}
|
||||
if (total+1 >= hist_siz) {
|
||||
hist_siz = hist_siz * 5 / 4 + 1; // grow by at least 25%
|
||||
hist_siz = hist_siz * 5 / 4 + 100; // grow by at least 25%
|
||||
hist_sav = alloc_r(hist_sav, sizeof(HIST_t)*hist_siz);
|
||||
hist_new = alloc_r(hist_new, sizeof(HIST_t)*hist_siz);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user