aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/i386/vfork.S
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-19 15:34:49 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-19 15:34:49 +0000
commitd53afacb5553ca5c62a11c8185391afe0e745d9a (patch)
treeb9576e82e90ee9b7fc0379ef209236b88343efd5 /sysdeps/unix/sysv/linux/i386/vfork.S
parent3ef4002b3ff17002a45627c45d62eace9d84b958 (diff)
downloadglibc-d53afacb5553ca5c62a11c8185391afe0e745d9a.tar
glibc-d53afacb5553ca5c62a11c8185391afe0e745d9a.tar.gz
glibc-d53afacb5553ca5c62a11c8185391afe0e745d9a.tar.bz2
glibc-d53afacb5553ca5c62a11c8185391afe0e745d9a.zip
Update.
* sysdeps/unix/sysv/linux/i386/vfork.S: Rewrite to use clone. * sysdeps/unix/sysv/linux/bits/sched.h: Define CLONE_VFORK.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/vfork.S')
-rw-r--r--sysdeps/unix/sysv/linux/i386/vfork.S40
1 files changed, 12 insertions, 28 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/vfork.S b/sysdeps/unix/sysv/linux/i386/vfork.S
index 118fccb613..1f6469a9a1 100644
--- a/sysdeps/unix/sysv/linux/i386/vfork.S
+++ b/sysdeps/unix/sysv/linux/i386/vfork.S
@@ -1,6 +1,6 @@
/* Copyright (C) 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Andreas Schwab <schwab@gnu.org>.
+ Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
@@ -28,37 +28,21 @@
ENTRY (__vfork)
-#ifdef __NR_vfork
+ /* We have to use the clone() system call. The flags to use are
+ CLONE_VFORK | CLONE_VM
+ and we send SIGCHLD on termination (i.e., flags = 0x4111). */
- /* Pop the return PC value into ECX. */
- popl %ecx
-
- /* Stuff the syscall number in EAX and enter into the kernel. */
- movl $SYS_ify (vfork), %eax
- int $0x80
- cmpl $-4095, %eax
- jae .Lerror /* Branch forward if it failed. */
-
- /* Jump to the return PC. */
- jmp *%ecx
-
-.Lerror:
- /* Push back the return PC. */
- pushl %ecx
-
- /* Check if vfork syscall is known at all. */
- cmpl $-ENOSYS, %eax
- jne SYSCALL_ERROR_LABEL
-
-#endif
-
- /* If we don't have vfork, fork is close enough. */
-
- movl $SYS_ify (fork), %eax
+ popl %edx /* Pop return address. */
+ pushl %ebx
+ movl %esp, %ecx
+ movl $0x4111, %ebx
+ movl $SYS_ify(clone), %eax
int $0x80
+ popl %ebx
+ pushl %edx
cmpl $-4095, %eax
jae SYSCALL_ERROR_LABEL
-.Lpseudo_end:
+L(pseudo_end):
ret
PSEUDO_END (__vfork)