Update to D25266, bin/ps: Make the rtprio option actually show
realtime priorities The current `ps -axO rtprio' show threads running at interrupt priority such as the [intr] thread as '1:48' and threads running at kernel priority such as [pagedaemon] as normal:4294967260. This change shows [intr] as intr:48 and [pagedaemon] as kernel:4. Reviewed by: kib MFC after: 1 week (together with -r362369) Differential Revision: https://reviews.freebsd.org/D25660
This commit is contained in:
parent
a7f1b0cac9
commit
4a022f0e06
@ -723,12 +723,19 @@ priorityr(KINFO *k, VARENT *ve __unused)
|
||||
break;
|
||||
case RTP_PRIO_NORMAL:
|
||||
/* alias for PRI_TIMESHARE */
|
||||
asprintf(&str, "normal:%u", level - PRI_MIN_TIMESHARE);
|
||||
if (level >= PRI_MIN_TIMESHARE)
|
||||
asprintf(&str, "normal:%u", level - PRI_MIN_TIMESHARE);
|
||||
else
|
||||
asprintf(&str, "kernel:%u", level - PRI_MIN_KERN);
|
||||
break;
|
||||
case RTP_PRIO_IDLE:
|
||||
/* alias for PRI_IDLE */
|
||||
asprintf(&str, "idle:%u", level - PRI_MIN_IDLE);
|
||||
break;
|
||||
case RTP_PRIO_ITHD:
|
||||
/* alias for PRI_ITHD */
|
||||
asprintf(&str, "intr:%u", level - PRI_MIN_ITHD);
|
||||
break;
|
||||
default:
|
||||
asprintf(&str, "%u:%u", class, level);
|
||||
break;
|
||||
|
@ -44,6 +44,7 @@
|
||||
|
||||
/* priority types. Start at 1 to catch uninitialized fields. */
|
||||
|
||||
#define RTP_PRIO_ITHD PRI_ITHD /* Interrupt thread. */
|
||||
#define RTP_PRIO_REALTIME PRI_REALTIME /* real time process */
|
||||
#define RTP_PRIO_NORMAL PRI_TIMESHARE /* time sharing process */
|
||||
#define RTP_PRIO_IDLE PRI_IDLE /* idle process */
|
||||
|
Loading…
x
Reference in New Issue
Block a user