From 7be859a705aa7084b187e8007847aa4ddb049faf Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Sun, 4 Mar 2001 19:13:07 +0000 Subject: Fixed vfork on i386. Reduced size of __uClibc_syscall. --- libc/sysdeps/linux/i386/vfork.S | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 libc/sysdeps/linux/i386/vfork.S (limited to 'libc/sysdeps/linux/i386/vfork.S') diff --git a/libc/sysdeps/linux/i386/vfork.S b/libc/sysdeps/linux/i386/vfork.S new file mode 100644 index 000000000..5775daee3 --- /dev/null +++ b/libc/sysdeps/linux/i386/vfork.S @@ -0,0 +1,22 @@ +.text + .align 4 +.globl vfork + .type vfork,@function +vfork: + popl %ecx + movl $190,%eax +#APP + int $0x80 +#NO_APP + cmpl $-4095,%eax + jae .L5 + jmp *%ecx + .p2align 4,,7 +.L5: + pushl %ecx + negl %eax + movl %eax,errno + movl $-1,%eax + ret +.Lfe1: + .size vfork,.Lfe1-vfork -- cgit v1.2.3