Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel
In directory usw-pr-cvs1:/tmp/cvs-serv29827/kernel
Modified Files:
process.c
Log Message:
Added flush_thread definition
Index: process.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel/process.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- process.c 2001/01/26 00:27:00 1.3
+++ process.c 2001/02/05 00:05:08 1.4
@@ -137,6 +137,14 @@
return 0;
}
+void flush_thread(void)
+{
+ /* I don't really know what's supposed to go in here. It
+ gets called just after exec(), so I guess we reset any
+ VAX-specific thread state here */
+}
+
+
static ATTRIB_NORET void kernel_thread_exit(int exitcode)
{
__chmk(__NR_exit);
|