Will have to come back to this in the future, since the idea is to be UNIX-like, but right now this is solved by commit [9b39d61](https://git.cloudapio.eu/apio/Luna/commit/9b39d618de3494a304fc5e7da…
I think my cheap solution for this right now is going be to introduce a spawn() function to spawn a new executable, and forget about fork() for now. At least until I can figure out why the hell it…
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…
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…