Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv17553/arch/vax/kernel
Modified Files:
process.c
Log Message:
Need to define default_idle()
Index: process.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/process.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- process.c 1 Dec 2002 23:58:04 -0000 1.8
+++ process.c 12 Dec 2002 01:34:52 -0000 1.9
@@ -41,6 +41,11 @@
}
+void default_idle(void)
+{
+ /* nothing */
+}
+
void switch_to(struct task_struct* prev, struct task_struct* next)
{
unsigned long pcbb; /* physical address of new pcb */
|