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

Diff for /src/usr.bin/top/commands.c between version 1.9 and 1.10

version 1.9, 2003/06/13 21:52:24 version 1.10, 2003/06/15 16:24:44
Line 317 
Line 317 
 char *  char *
 kill_procs(char *str)  kill_procs(char *str)
 {  {
         int signum = SIGTERM, procnum, uid;          int signum = SIGTERM, procnum;
         struct sigdesc *sigp;          struct sigdesc *sigp;
           uid_t uid;
         char *nptr;          char *nptr;
   
         /* reset error array */          /* reset error array */
Line 381 
Line 382 
 char *  char *
 renice_procs(char *str)  renice_procs(char *str)
 {  {
         int prio, procnum, uid;          uid_t uid;
         char negate;          char negate;
           int prio, procnum;
   
         ERR_RESET;          ERR_RESET;
         uid = getuid();          uid = getuid();

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10