Module Name: src Committed By: matt Date: Wed Jun 9 14:24:12 UTC 2010
Modified Files: src/sys/arch/mips/include [matt-nb5-mips64]: intr.h Log Message: Add a _IPL_NAMES(pfx) which is a list of strings corresponding to the IPL names. To generate a diff of this commit: cvs rdiff -u -r1.3.96.12 -r1.3.96.13 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.3.96.12 src/sys/arch/mips/include/intr.h:1.3.96.13 --- src/sys/arch/mips/include/intr.h:1.3.96.12 Sun May 16 00:34:45 2010 +++ src/sys/arch/mips/include/intr.h Wed Jun 9 14:24:12 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: intr.h,v 1.3.96.12 2010/05/16 00:34:45 matt Exp $ */ +/* $NetBSD: intr.h,v 1.3.96.13 2010/06/09 14:24:12 matt Exp $ */ /*- * Copyright (c) 2009, 2010 The NetBSD Foundation, Inc. * All rights reserved. @@ -46,6 +46,8 @@ #define IPL_HIGH (IPL_DDB+1) #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" } #define IST_UNUSABLE -1 /* interrupt cannot be used */ #define IST_NONE 0 /* none (dummy) */