]> git.lizzy.rs Git - plan9front.git/blobdiff - sys/src/9/omap/softfpu.c
kernel: stop the practice of passing DMDIR to devir() perm argument
[plan9front.git] / sys / src / 9 / omap / softfpu.c
old mode 100755 (executable)
new mode 100644 (file)
index 7f01446..817b502
@@ -41,27 +41,6 @@ fpunoted(void)
         */
 }
 
-void
-fpusysrfork(Ureg*)
-{
-       /*
-        * Called early in the non-interruptible path of
-        * sysrfork() via the machine-dependent syscall() routine.
-        * Save the state so that it can be easily copied
-        * to the child process later.
-        */
-}
-
-void
-fpusysrforkchild(Proc*, Ureg *, Proc*)
-{
-       /*
-        * Called later in sysrfork() via the machine-dependent
-        * sysrforkchild() routine.
-        * Copy the parent FPU state to the child.
-        */
-}
-
 void
 fpuprocsave(Proc*)
 {
@@ -85,6 +64,15 @@ fpuprocrestore(Proc*)
         */
 }
 
+void
+fpuprocfork(Proc*)
+{
+       /*
+        * The current process has been forked, save and copy neccesary
+        * state to child. Nothing to do here, child proc starts with FPinit.
+        */
+}
+
 void
 fpusysprocsetup(Proc*)
 {