Module Name:    src
Committed By:   christos
Date:           Sat Nov  9 20:32:59 UTC 2013

Modified Files:
        src/sys/arch/vax/include: cpu.h

Log Message:
__USE cii


To generate a diff of this commit:
cvs rdiff -u -r1.96 -r1.97 src/sys/arch/vax/include/cpu.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/vax/include/cpu.h
diff -u src/sys/arch/vax/include/cpu.h:1.96 src/sys/arch/vax/include/cpu.h:1.97
--- src/sys/arch/vax/include/cpu.h:1.96	Sat Oct 19 15:21:00 2013
+++ src/sys/arch/vax/include/cpu.h	Sat Nov  9 15:32:59 2013
@@ -1,4 +1,4 @@
-/*      $NetBSD: cpu.h,v 1.96 2013/10/19 19:21:00 christos Exp $      */
+/*      $NetBSD: cpu.h,v 1.97 2013/11/09 20:32:59 christos Exp $      */
 
 /*
  * Copyright (c) 1994 Ludd, University of Lule}, Sweden
@@ -186,7 +186,8 @@ cpu_intr_p(void)
 #define	CPU_IS_PRIMARY(ci)	((ci)->ci_flags & CI_MASTERCPU)
 
 #define	CPU_INFO_ITERATOR	int
-#define	CPU_INFO_FOREACH(cii, ci)	cii = 0, ci = SIMPLEQ_FIRST(&cpus); \
+#define	CPU_INFO_FOREACH(cii, ci)	cii = 0, __USE(cii), \
+					ci = SIMPLEQ_FIRST(&cpus); \
 					ci != NULL; \
 					ci = SIMPLEQ_NEXT(ci, ci_next)
 

Reply via email to