Update of /cvsroot/linux-mips/linux/kernel
In directory usw-pr-cvs1:/tmp/cvs-serv17983/kernel
Modified Files:
sys.c
Removed Files:
exit.c printk.c sched.c
Log Message:
Synced to 2.4.18
Index: sys.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/kernel/sys.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- sys.c 19 Oct 2001 21:19:40 -0000 1.4
+++ sys.c 26 Feb 2002 19:03:33 -0000 1.5
@@ -1252,6 +1252,22 @@
#endif
break;
+ case PR_SET_FPEMU:
+#ifdef SET_FPEMU_CTL
+ error = SET_FPEMU_CTL(current, arg2);
+#else
+ error = -EINVAL;
+#endif
+ break;
+
+ case PR_GET_FPEMU:
+#ifdef GET_FPEMU_CTL
+ error = GET_FPEMU_CTL(current, arg2);
+#else
+ error = -EINVAL;
+#endif
+ break;
+
case PR_GET_KEEPCAPS:
if (current->keep_capabilities)
error = 1;
--- exit.c DELETED ---
--- printk.c DELETED ---
--- sched.c DELETED ---
|