Browse Source

support vfork on i386

rs-1.0
Rich Felker 15 years ago
parent
commit
2bb75db611
  1. 14
      src/process/i386/vfork.s

14
src/process/i386/vfork.s

@ -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
Loading…
Cancel
Save