¿Cual es la ventaja de que el parent del primer hijo se un sibling? ¿Navegabilidad?
Fork:
Si se hace unexec()inmediatamente no se copia nada (segun el copy on write) ¿esto es porque aqui se pasa por arriba el TXT con el del nuevo programa y se carga la DATA de este ejecutable que apunta a otra tabla de memoria?¿como lo implementa? aparentement asi http://unix.stackexchange.com/questions/58145/how-does-copy-on-write-in-fork-handle-multiple-fork
segun man vfork() is a special case of clone(2). It is used to create new processes without copying the page tables of the parent process. It may be useful in performance-sensitive applications where a child is created which then immediately issues an execve
Threads:
"... (tampoco secopia la tabla de páginas)" aca es donde el TLB no se vaciaria no?
Salu2