svn commit: r323225 - head/bin/ps

Edward Tomasz Napierala trasz at FreeBSD.org
Wed Sep 6 16:18:08 UTC 2017


Author: trasz
Date: Wed Sep  6 16:18:06 2017
New Revision: 323225
URL: https://svnweb.freebsd.org/changeset/base/323225

Log:
  Reflect realtime and idle priorities in ps(1) state flags, same like
  we do for the usual nice values.  It could be argued that they should
  use another set of indicators, since the underlying mechanism is
  different, but they match the description in the manual page, and so
  I think it's ok to not overcomplicate things.
  
  PR:		81757
  MFC after:	2 weeks
  Sponsored by:	DARPA, AFRL

Modified:
  head/bin/ps/print.c

Modified: head/bin/ps/print.c
==============================================================================
--- head/bin/ps/print.c	Wed Sep  6 16:16:11 2017	(r323224)
+++ head/bin/ps/print.c	Wed Sep  6 16:18:06 2017	(r323225)
@@ -262,9 +262,9 @@ state(KINFO *k, VARENT *ve __unused)
 	cp++;
 	if (!(flag & P_INMEM))
 		*cp++ = 'W';
-	if (k->ki_p->ki_nice < NZERO)
+	if (k->ki_p->ki_nice < NZERO || k->ki_p->ki_pri.pri_class == PRI_REALTIME)
 		*cp++ = '<';
-	else if (k->ki_p->ki_nice > NZERO)
+	else if (k->ki_p->ki_nice > NZERO || k->ki_p->ki_pri.pri_class == PRI_IDLE)
 		*cp++ = 'N';
 	if (flag & P_TRACED)
 		*cp++ = 'X';


More information about the svn-src-all mailing list