|
From: Kenn H. <ke...@us...> - 2003-08-24 22:24:03
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax
In directory sc8-pr-cvs1:/tmp/cvs-serv26575/include/asm
Modified Files:
processor.h
Log Message:
definition of prepare_to_copy() needed for 2.5.65
Index: processor.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/processor.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- processor.h 9 Feb 2003 01:46:02 -0000 1.7
+++ processor.h 24 Aug 2003 12:42:51 -0000 1.8
@@ -70,6 +70,9 @@
/* nothing to do on VAX */
}
+/* Prepare to copy thread state - unlazy all lazy status */
+#define prepare_to_copy(tsk) do { } while (0)
+
extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
|