1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * June 3, 2003 Erik Andersen
- *
- */
- #define _ERRNO_H 1
- #include <bits/errno.h>
- #include <sys/syscall.h>
- #ifndef __NR_vfork
- /* No vfork so use fork instead */
- .weak vfork ; vfork = __libc_fork
- #else
- .text
- .global __vfork
- .type __vfork,%function
- .align 1<<4
- __vfork:
- popl %ecx
- movl $__NR_vfork,%eax
- int $0x80
- pushl %ecx
- cmpl $-4095,%eax
- jae __error
- ret
- __error:
- call __syscall_error
- .size __vfork,.-__vfork
- .weak vfork ; vfork = __vfork
- #endif
|