When a child process created by
vfork()
callsexec()
, doesn'texec()
modify the address space of the parent process, by loading the new program?
Não, exec()
fornece um novo espaço de endereçamento para o novo programa; não modifica o espaço de endereço pai. Veja, por exemplo, a discussão das funções exec
em POSIX e o Linux execve()
manpage .
When a child process created by vfork() calls exit(), does exit() not modify the address space of the parent process when terminating the child?
Plain exit()
might - ele executa os ganchos de saída instalados pelo programa em execução (incluindo suas bibliotecas). vfork()
é mais restritivo; assim, no Linux, manda o uso de _exit()
que não chama as funções de limpeza da biblioteca C.
vfork()
revelou-se bastante difícil de acertar; Ele foi removido nas versões atuais do padrão POSIX e posix_spawn()
deve ser usado.
No entanto, a menos que você realmente saiba o que está fazendo, não use vfork()
ou posix_spawn()
; manter o bom e velho fork()
e exec()
.
A página de manual do Linux vinculada acima fornece mais contexto:
However, in the bad old days a
fork(2)
would require making a complete copy of the caller's data space, often needlessly, since usually immediately afterward anexec(3)
is done. Thus, for greater efficiency, BSD introduced thevfork()
system call, which did not fully copy the address space of the parent process, but borrowed the parent's memory and thread of control until a call toexecve(2)
or an exit occurred. The parent process was suspended while the child was using its resources. The use ofvfork()
was tricky: for example, not modifying data in the parent process depended on knowing which variables were held in a register.