diff options
author | Scott Soule Cheloha <cheloha@cvs.openbsd.org> | 2023-04-22 23:51:28 +0000 |
---|---|---|
committer | Scott Soule Cheloha <cheloha@cvs.openbsd.org> | 2023-04-22 23:51:28 +0000 |
commit | 34892b3c462f47e7c465f2f1645f721672afc771 (patch) | |
tree | 004199ed63c0e5b87bf04023b8d05791d0cadaa2 /sys/kern | |
parent | 332b5f6a223795c19b3cb8fe956734d16bcd6720 (diff) |
clockintr, ddb(4): label non-pending clock interrupts "idle"
"idle" is more obvious than "est" and requires no knowledge of the
implementation.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/kern_clockintr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_clockintr.c b/sys/kern/kern_clockintr.c index b95346f123c..7908d270151 100644 --- a/sys/kern/kern_clockintr.c +++ b/sys/kern/kern_clockintr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_clockintr.c,v 1.18 2023/04/21 16:35:20 cheloha Exp $ */ +/* $OpenBSD: kern_clockintr.c,v 1.19 2023/04/22 23:51:27 cheloha Exp $ */ /* * Copyright (c) 2003 Dale Rahn <drahn@openbsd.org> * Copyright (c) 2020 Mark Kettenis <kettenis@openbsd.org> @@ -735,7 +735,7 @@ db_show_clockintr_cpu(struct cpu_info *ci) db_show_clockintr(elm, "pend", cpu); TAILQ_FOREACH(elm, &cq->cq_est, cl_elink) { if (!ISSET(elm->cl_flags, CLST_PENDING)) - db_show_clockintr(elm, "est", cpu); + db_show_clockintr(elm, "idle", cpu); } } |