History log of /netbsd/lib/libc/arch/alpha/sys/__vfork14.S (Results 1 – 2 of 2)
Revision Date Author Comments
# d220ca5b 14-Jun-2000 cgd <cgd@NetBSD.org>

fix up NetBSD RCS Ids to match the standard, and the leading comment as
to match as well. No functional changes.


# bedc7b48 04-Jan-1998 thorpej <thorpej@NetBSD.org>

Add syscall stubs for __vfork14(). These are basically copies of Ovfork.S
with the syscall numbers changed.

Since 4.4BSD vfork(2) did not share address space, Ovfork.S could be changed
to be identi

Add syscall stubs for __vfork14(). These are basically copies of Ovfork.S
with the syscall numbers changed.

Since 4.4BSD vfork(2) did not share address space, Ovfork.S could be changed
to be identical to fork.S (modulo syscall numbers). __vfork14.S, however,
needs to remain separate since with a shared address space, the stub needs to
pre-decrement the stack and do an indirect jump to the return address, so that
the shared stackframe is still there when the parent returns. (Obviously,
this does not apply to systems which to not build stackframes on leaf calls.)

show more ...