Module Name: src
Committed By: matt
Date: Sat Jun 6 04:31:52 UTC 2015
Modified Files:
src/sys/arch/mips/include: intr.h
Log Message:
Add a IPI for watchdogs.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 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.9 src/sys/arch/mips/include/intr.h:1.10
--- src/sys/arch/mips/include/intr.h:1.9 Mon Jun 1 22:55:12 2015
+++ src/sys/arch/mips/include/intr.h Sat Jun 6 04:31:52 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.9 2015/06/01 22:55:12 matt Exp $ */
+/* $NetBSD: intr.h,v 1.10 2015/06/06 04:31:52 matt Exp $ */
/*-
* Copyright (c) 2009, 2010 The NetBSD Foundation, Inc.
@@ -75,7 +75,8 @@
#define IPI_HALT 6 /* halt cpu */
#define IPI_XCALL 7 /* xcall */
#define IPI_GENERIC 8 /* generic IPI */
-#define NIPIS 9
+#define IPI_WDOG 9 /* tickle a wdog */
+#define NIPIS 10
#ifdef __INTR_PRIVATE
struct splsw {