[BACK]Return to top.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / top

Diff for /src/usr.bin/top/top.c between version 1.82 and 1.83

version 1.82, 2014/09/17 01:56:54 version 1.83, 2015/05/06 07:53:29
Line 360 
Line 360 
         /* initialize termcap */          /* initialize termcap */
         init_termcap(interactive);          init_termcap(interactive);
   
         /* get the string to use for the process area header */  
         header_text = format_header(uname_field);  
   
         /* initialize display interface */          /* initialize display interface */
         max_topn = display_init(&statics);          max_topn = display_init(&statics);
   
Line 472 
Line 469 
                 /* handle message area */                  /* handle message area */
                 i_message();                  i_message();
   
                   /* get the string to use for the process area header */
                   header_text = format_header(uname_field, ps.threads);
   
                 /* update the header area */                  /* update the header area */
                 i_header(header_text);                  i_header(header_text);
   
Line 502 
Line 502 
                                 char * s;                                  char * s;
   
                                 s = format_next_process(processes, get_userid,                                  s = format_next_process(processes, get_userid,
                                     &pid);                                      &pid, ps.threads);
                                 i_process(i, s, pid == hlpid);                                  i_process(i, s, pid == hlpid);
                         }                          }
                 }                  }

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.83