summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2024-10-25 08:08:25 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2024-10-25 08:08:25 +0000
commitae9550c1949a1940717431c3ae7e11317814f4e7 (patch)
tree04b7829ac04f74fc453e880369b574aa4842bf0a /sys/arch/alpha/include
parent50c9a617287517670ab4d58c1bbbf246d0e1b89d (diff)
Rename `ci_intrdepth' to `ci_idepth'.
ok jsg@, miod@
Diffstat (limited to 'sys/arch/alpha/include')
-rw-r--r--sys/arch/alpha/include/cpu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/include/cpu.h b/sys/arch/alpha/include/cpu.h
index 21377986c8b..036af98a4a8 100644
--- a/sys/arch/alpha/include/cpu.h
+++ b/sys/arch/alpha/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.76 2024/08/28 17:37:12 miod Exp $ */
+/* $OpenBSD: cpu.h,v 1.77 2024/10/25 08:08:24 mpi Exp $ */
/* $NetBSD: cpu.h,v 1.45 2000/08/21 02:03:12 thorpej Exp $ */
/*-
@@ -205,7 +205,7 @@ struct cpu_info {
paddr_t ci_idle_pcb_paddr; /* PA of idle PCB */
struct device *ci_dev; /* pointer to our device */
u_long ci_want_resched; /* preempt current process */
- u_long ci_intrdepth; /* interrupt trap depth */
+ u_long ci_idepth; /* interrupt trap depth */
struct trapframe *ci_db_regs; /* registers for debuggers */
#if defined(MULTIPROCESSOR)
@@ -320,7 +320,7 @@ struct clockframe {
* r/m/w cycle is complete, we won't be counted... but it's not
* like this statistic has to be extremely accurate.
*/
-#define CLKF_INTR(framep) (curcpu()->ci_intrdepth)
+#define CLKF_INTR(framep) (curcpu()->ci_idepth)
/*
* This is used during profiling to integrate system time.