Author: kib
Date: Tue Feb  9 18:35:37 2016
New Revision: 295445
URL: https://svnweb.freebsd.org/changeset/base/295445

Log:
  Rename variable to reflect the condition.
  
  Suggested by: jhb
  Sponsored by: The FreeBSD Foundation

Modified:
  head/usr.bin/top/machine.c

Modified: head/usr.bin/top/machine.c
==============================================================================
--- head/usr.bin/top/machine.c  Tue Feb  9 18:19:24 2016        (r295444)
+++ head/usr.bin/top/machine.c  Tue Feb  9 18:35:37 2016        (r295445)
@@ -1155,12 +1155,12 @@ getsysctl(const char *name, void *ptr, s
 static const char *
 format_nice(const struct kinfo_proc *pp)
 {
-       const char *fifo, *kthread;
+       const char *fifo, *kproc;
        int rtpri;
        static char nicebuf[4 + 1];
 
        fifo = PRI_NEED_RR(pp->ki_pri.pri_class) ? "" : "F";
-       kthread = (pp->ki_flag & P_KPROC) ? "k" : "";
+       kproc = (pp->ki_flag & P_KPROC) ? "k" : "";
        switch (PRI_BASE(pp->ki_pri.pri_class)) {
        case PRI_ITHD:
                return ("-");
@@ -1188,7 +1188,7 @@ format_nice(const struct kinfo_proc *pp)
                rtpri = ((pp->ki_flag & P_KPROC) ? pp->ki_pri.pri_native :
                    pp->ki_pri.pri_user) - PRI_MIN_REALTIME;
                snprintf(nicebuf, sizeof(nicebuf), "%sr%d%s",
-                   kthread, rtpri, fifo);
+                   kproc, rtpri, fifo);
                break;
        case PRI_TIMESHARE:
                if (pp->ki_flag & P_KPROC)
@@ -1200,7 +1200,7 @@ format_nice(const struct kinfo_proc *pp)
                rtpri = ((pp->ki_flag & P_KPROC) ? pp->ki_pri.pri_native :
                    pp->ki_pri.pri_user) - PRI_MIN_IDLE;
                snprintf(nicebuf, sizeof(nicebuf), "%si%d%s",
-                   kthread, rtpri, fifo);
+                   kproc, rtpri, fifo);
                break;
        default:
                return ("?");
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to