Module Name: src
Committed By: he
Date: Mon Aug 1 15:26:31 UTC 2011
Modified Files:
src/sys/kern: subr_pserialize.c
Log Message:
Need to include <sys/evcnt.h> explicitly to build this on at least amiga.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/kern/subr_pserialize.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/subr_pserialize.c
diff -u src/sys/kern/subr_pserialize.c:1.1 src/sys/kern/subr_pserialize.c:1.2
--- src/sys/kern/subr_pserialize.c:1.1 Sat Jul 30 17:01:04 2011
+++ src/sys/kern/subr_pserialize.c Mon Aug 1 15:26:31 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_pserialize.c,v 1.1 2011/07/30 17:01:04 christos Exp $ */
+/* $NetBSD: subr_pserialize.c,v 1.2 2011/08/01 15:26:31 he Exp $ */
/*-
* Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
@@ -38,12 +38,13 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_pserialize.c,v 1.1 2011/07/30 17:01:04 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_pserialize.c,v 1.2 2011/08/01 15:26:31 he Exp $");
#include <sys/param.h>
#include <sys/condvar.h>
#include <sys/cpu.h>
+#include <sys/evcnt.h>
#include <sys/kmem.h>
#include <sys/mutex.h>
#include <sys/pserialize.h>