Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel
In directory usw-pr-cvs1:/tmp/cvs-serv27619/arch/vax/kernel
Modified Files:
process.c
Log Message:
dump FPU filler function .. one less bad linker error
Index: process.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel/process.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- process.c 2001/02/21 00:19:05 1.5
+++ process.c 2001/02/27 22:36:52 1.6
@@ -21,6 +21,8 @@
#include <asm/unistd.h>
+#include <asm/elf.h>
+
void cpu_idle(void)
{
/* endless idle loop with no priority at all */
@@ -233,4 +235,10 @@
putname(tmpname);
out:
return error;
+}
+
+int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
+{
+ /* no FPU support .. YET - D.A. 25 Feb 2001 */
+ return 0;
}
|