Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386/include PMC_TYPE_I586 -> PMC_CLASS_I586



details:   https://anonhg.NetBSD.org/src/rev/3335264978a2
branches:  trunk
changeset: 535055:3335264978a2
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Fri Aug 09 05:28:08 2002 +0000

description:
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).

diffstat:

 sys/arch/i386/include/pmc.h |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (28 lines):

diff -r 132ec970cf15 -r 3335264978a2 sys/arch/i386/include/pmc.h
--- a/sys/arch/i386/include/pmc.h       Fri Aug 09 05:27:09 2002 +0000
+++ b/sys/arch/i386/include/pmc.h       Fri Aug 09 05:28:08 2002 +0000
@@ -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 */
 



Home | Main Index | Thread Index | Old Index