From 5bf0fe41970954b3726bc70c2e29a3c2687161e9 Mon Sep 17 00:00:00 2001 From: Scott Soule Cheloha Date: Sun, 25 Feb 2024 19:15:51 +0000 Subject: 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. --- sys/arch/arm64/include/cpu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/arch/arm64') diff --git a/sys/arch/arm64/include/cpu.h b/sys/arch/arm64/include/cpu.h index 937f5fa0e41..d0521a33ab3 100644 --- a/sys/arch/arm64/include/cpu.h +++ b/sys/arch/arm64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.42 2024/01/24 19:23:39 cheloha Exp $ */ +/* $OpenBSD: cpu.h,v 1.43 2024/02/25 19:15:50 cheloha Exp $ */ /* * Copyright (c) 2016 Dale Rahn * @@ -176,7 +176,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]; }; -- cgit v1.2.3