mirror of
https://github.com/fluencelabs/musl
synced 2025-06-18 17:31:38 +00:00
support vfork on i386
This commit is contained in:
14
src/process/i386/vfork.s
Normal file
14
src/process/i386/vfork.s
Normal file
@ -0,0 +1,14 @@
|
||||
.global __vfork
|
||||
.weak vfork
|
||||
.type __vfork,@function
|
||||
.type vfork,@function
|
||||
__vfork:
|
||||
vfork:
|
||||
pop %edx
|
||||
mov $190,%eax
|
||||
int $128
|
||||
push %edx
|
||||
push %eax
|
||||
call __syscall_ret
|
||||
pop %edx
|
||||
ret
|
Reference in New Issue
Block a user