Browse Source

Kill the runtime fallback to fork and make it be compile time

Eric Andersen 22 years ago
parent
commit
6679351d84
1 changed files with 9 additions and 19 deletions
  1. 9 19
      libc/sysdeps/linux/i386/vfork.S

+ 9 - 19
libc/sysdeps/linux/i386/vfork.S

@@ -1,8 +1,5 @@
 /*
- * June 27, 2001             Manuel Novoa III
- *
- * Modified to (hopefully) be PIC and REENTRANT safe.
- * Modified again to better follow the glibc implementation.
+ * June 3, 2003             Erik Andersen
  *
  */
 
@@ -10,30 +7,24 @@
 #include <bits/errno.h>
 #include <sys/syscall.h>
 
+#ifndef __NR_vfork
+
+/* No vfork so use fork instead */
+.weak vfork ; vfork = __libc_fork
+
+#else
+
         .text
 	.globl __vfork;
 	.type __vfork,@function;
 	.align 1<<4;
 	
 __vfork:
-#ifdef __NR_vfork
 	popl %ecx
 	movl $__NR_vfork,%eax
 	int $0x80
 	pushl %ecx
 	cmpl $-4095,%eax
-	jae .Lerror
-	ret
-
-.Lerror:
-	cmpl  $-ENOSYS,%eax
-	jne   __syscall_error
-#endif	
-
-	/* Fall back on calling fork */
-	movl $__NR_fork,%eax
-	int $0x80
-	cmpl $-4095,%eax
 	jae __syscall_error
 	ret
 
@@ -59,5 +50,4 @@ __syscall_error:
 
 
 .weak vfork ; vfork = __vfork
-
-
+#endif