Block a user
119 contributions in the last 12 months
Less
More
WIP: Add fork()
I don't understand.
Now address spaces are cloned, and copied, which means they have the same addresses but modifying memory in one doesn't get reflected in the other.
And yet, with an…
WIP: Add fork()
There is a problem here:
The child starts doing stuff with the parent's stack, since all addresses copied from the parent are directly what the parent set.
But if we map both stacks at the…