Add back x86_32 support #5
Loading…
Reference in New Issue
No description provided.
Delete Branch "x86_32"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
32 bit has not been supported in a long time but it is now back and working. There are still some panics that don't exist in x86_64 probably partially since the whole scheduler was rewritten. Threads now use processor specific stack and forced interrupt while rescheduling. This fixes the old hacky context saving which depended on compiler stack usage and code generation. This approach did not work for 32 bit which uses stack more heavily.