mystikos
mystikos copied to clipboard
move pseudo fork to kernel
currently pseudo fork is hooked within the crt. It would be good to move into the kernel if possible. There are a couple of complexities with this though
- needs to be implemented on the user stack and not a kernel stack otherwise the stack copying and fixup will fail
- The creation of the pthread structures include headers from internal musl includes
relates to #414