define IPL_SAFEPRI which will be used by kern_synch.c to initialize safepri.

This commit is contained in:
matt 2012-03-03 00:21:50 +00:00
parent 5c6137d172
commit 31984c0b33

View File

@ -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" }