aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorGarance A Drosehn <gad@FreeBSD.org>2004-06-27 23:59:38 +0000
committerGarance A Drosehn <gad@FreeBSD.org>2004-06-27 23:59:38 +0000
commit70548f642ac8b10d7794dc00a55634a71ce3900c (patch)
treea8cc180b03ba0c9a92f4cb9a20c787c0ecd86e6e /bin
parentb3f695b45cdd72bbcd86936d4630f9fd5c710e3e (diff)
Notes
Diffstat (limited to 'bin')
-rw-r--r--bin/ps/print.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/ps/print.c b/bin/ps/print.c
index 00394fcb73a79..134ceb1ff0ded 100644
--- a/bin/ps/print.c
+++ b/bin/ps/print.c
@@ -668,6 +668,9 @@ priorityr(KINFO *k, VARENT *ve)
class = lpri->pri_class;
level = lpri->pri_level;
switch (class) {
+ case PRI_ITHD:
+ snprintf(str, sizeof(str), "intr:%u", level);
+ break;
case PRI_REALTIME:
snprintf(str, sizeof(str), "real:%u", level);
break;