From 7d9de8b2ad875adce6204298e6357631bf1bb21c Mon Sep 17 00:00:00 2001 From: thorpej Date: Fri, 9 Aug 2002 05:28:08 +0000 Subject: [PATCH] PMC_TYPE_I586 -> PMC_CLASS_I586 PMC_TYPE_I686 -> PMC_CLASS_I686 PMC_TYPE_K7 -> PMC_CLASS_K7 To reflect terminilogy used in pmc(3). --- sys/arch/i386/include/pmc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/i386/include/pmc.h b/sys/arch/i386/include/pmc.h index d0a6d2c673df..8cc2550948bd 100644 --- a/sys/arch/i386/include/pmc.h +++ b/sys/arch/i386/include/pmc.h @@ -1,4 +1,4 @@ -/* $NetBSD: pmc.h,v 1.5 2002/08/08 20:40:49 thorpej Exp $ */ +/* $NetBSD: pmc.h,v 1.6 2002/08/09 05:28:08 thorpej Exp $ */ /*- * Copyright (c) 2000 Zembu Labs, Inc. @@ -36,15 +36,15 @@ #ifndef _I386_PMC_H_ #define _I386_PMC_H_ -#define PMC_TYPE_I586 0x10000 /* i586-compatible */ +#define PMC_CLASS_I586 0x10000 /* i586-compatible */ #define PMC_TYPE_I586_TSC 0x10001 /* cycle counter */ #define PMC_TYPE_I586_PMCx 0x10002 /* performance counter */ -#define PMC_TYPE_I686 0x20000 /* i686-compatible */ +#define PMC_CLASS_I686 0x20000 /* i686-compatible */ #define PMC_TYPE_I686_TSC 0x20001 /* cycle counter */ #define PMC_TYPE_I686_PMCx 0x20002 /* performance counter */ -#define PMC_TYPE_K7 0x30000 /* K7-compatible */ +#define PMC_CLASS_K7 0x30000 /* K7-compatible */ #define PMC_TYPE_K7_TSC 0x30001 /* cycle counter */ #define PMC_TYPE_K7_PMCx 0x30002 /* performance counter */