Module Name: src
Committed By: matt
Date: Sat Mar 3 00:21:50 UTC 2012
Modified Files:
src/sys/arch/mips/include: intr.h
Log Message:
define IPL_SAFEPRI which will be used by kern_synch.c to initialize safepri.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/mips/include/intr.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/mips/include/intr.h
diff -u src/sys/arch/mips/include/intr.h:1.5 src/sys/arch/mips/include/intr.h:1.6
--- src/sys/arch/mips/include/intr.h:1.5 Mon May 2 00:17:35 2011
+++ src/sys/arch/mips/include/intr.h Sat Mar 3 00:21:50 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.5 2011/05/02 00:17:35 matt Exp $ */
+/* $NetBSD: intr.h,v 1.6 2012/03/03 00:21:50 matt Exp $ */
/*-
* Copyright (c) 2009, 2010 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -49,6 +49,8 @@
#define IPL_DDB (IPL_SCHED+1)
#define IPL_HIGH (IPL_DDB+1)
+#define IPL_SAFEPRI IPL_SOFTSERIAL
+
#define _IPL_N (IPL_HIGH+1)
#define _IPL_NAMES(pfx) { pfx"none", pfx"softclock/bio", pfx"softnet/serial", \
pfx"vm", pfx"sched", pfx"ddb", pfx"high" }