blob: c7002f189a5a21939e7162c7d945f8aea50b710e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
* June 27, 2001 Manuel Novoa III
*
* Modified to (hopefully) be PIC and REENTRANT safe.
* Modified again to better follow the glibc implementation.
*
*/
#define _ERRNO_H 1
#include <bits/errno.h>
#include <sys/syscall.h>
.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
__syscall_error:
negl %eax
pushl %eax
#ifdef __PIC__
call .Lthere
.Lthere:
popl %ebx
addl $_GLOBAL_OFFSET_TABLE_+[.- .Lthere ], %ebx
call __errno_location@PLT
#else
call __errno_location
#endif
popl %ecx
movl %ecx, (%eax)
xorl %eax, %eax
decl %eax
.Lsize:
.size __vfork,.Lsize-__vfork
.weak vfork ; vfork = __vfork
|