Module Name: src
Committed By: dholland
Date: Sun May 30 02:28:13 UTC 2010
Modified Files:
src/sys/sys: pool.h
Log Message:
Uses MAXCPUS from sys/param.h; include that explicitly instead of by
accident.
To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/sys/sys/pool.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/sys/pool.h
diff -u src/sys/sys/pool.h:1.68 src/sys/sys/pool.h:1.69
--- src/sys/sys/pool.h:1.68 Wed Dec 30 18:57:16 2009
+++ src/sys/sys/pool.h Sun May 30 02:28:13 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: pool.h,v 1.68 2009/12/30 18:57:16 elad Exp $ */
+/* $NetBSD: pool.h,v 1.69 2010/05/30 02:28:13 dholland Exp $ */
/*-
* Copyright (c) 1997, 1998, 1999, 2000, 2007 The NetBSD Foundation, Inc.
@@ -42,6 +42,7 @@
#endif
#ifdef __POOL_EXPOSE
+#include <sys/param.h>
#include <sys/mutex.h>
#include <sys/condvar.h>
#include <sys/queue.h>