diff options
author | Scott Soule Cheloha <cheloha@cvs.openbsd.org> | 2024-02-25 19:15:51 +0000 |
---|---|---|
committer | Scott Soule Cheloha <cheloha@cvs.openbsd.org> | 2024-02-25 19:15:51 +0000 |
commit | 5bf0fe41970954b3726bc70c2e29a3c2687161e9 (patch) | |
tree | 3fecee3a3a7c3e35f90efaf3d22244aaf485b889 /sys/arch/m88k | |
parent | 40c7459b03e49543f30466eb294475435b8bcc16 (diff) |
clockintr: rename "struct clockintr_queue" to "struct clockqueue"
The code has outgrown the original name for this struct. Both the
external and internal APIs have used the "clockqueue" namespace for
some time when operating on it, and that name is eyeball-consistent
with "clockintr" and "clockrequest", so "clockqueue" it is.
Diffstat (limited to 'sys/arch/m88k')
-rw-r--r-- | sys/arch/m88k/include/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m88k/include/cpu.h b/sys/arch/m88k/include/cpu.h index 0c0a7171998..e25e9f12ea7 100644 --- a/sys/arch/m88k/include/cpu.h +++ b/sys/arch/m88k/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.75 2024/02/14 12:36:35 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.76 2024/02/25 19:15:50 cheloha Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * Copyright (c) 1992, 1993 @@ -179,7 +179,7 @@ struct cpu_info { struct gmonparam *ci_gmon; struct clockintr ci_gmonclock; #endif - struct clockintr_queue ci_queue; + struct clockqueue ci_queue; char ci_panicbuf[512]; }; |