See this:
process X
fork()
-------> Process Y
clone()
----> thread Z
exit()
THIS MUST NOT
WRITE TO MEMORY
IN Z!!
Notice how the exit() in Y will never be able to write into the address
space of X - it would only write into the address space of Z, and Z is not
expecting that at all!
Linus
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/