Module Name: src
Committed By: cliff
Date: Thu Apr 14 05:08:22 UTC 2011
Modified Files:
src/sys/arch/mips/include: locore.h
Log Message:
- add lsw_cpu_run function pointer to struct locoresw
To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 src/sys/arch/mips/include/locore.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/locore.h
diff -u src/sys/arch/mips/include/locore.h:1.87 src/sys/arch/mips/include/locore.h:1.88
--- src/sys/arch/mips/include/locore.h:1.87 Tue Apr 12 22:54:31 2011
+++ src/sys/arch/mips/include/locore.h Thu Apr 14 05:08:22 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.h,v 1.87 2011/04/12 22:54:31 matt Exp $ */
+/* $NetBSD: locore.h,v 1.88 2011/04/14 05:08:22 cliff Exp $ */
/*
* This file should not be included by MI code!!!
@@ -362,6 +362,7 @@
int (*lsw_send_ipi)(struct cpu_info *, int);
void (*lsw_cpu_offline_md)(void);
void (*lsw_cpu_init)(struct cpu_info *);
+ void (*lsw_cpu_run)(struct cpu_info *);
int (*lsw_bus_error)(unsigned int);
};