forked from ESALP/ESALP-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix blocking and recursion in StackFrameAllocator
This commit fixes the blocking in StackFrameAllocator. There is also blocking in `remap_the_kernel()`, and that was fixed using a temporary change. While fixing things I added more verbose comments to some functions and errors in the operating system. `test_paging` has been moved from being a dead function to being commented out, it will be returned to the codebase when the memory module is fixed. The biggest changes in this commit are the changes to `TinyAllocator`. Now almost all of it's functions are generic using closures which makes it easier to use in other parts of the codebase. Finally I have created some changes in the `vga_buffer` module. These are mostly whitespace fixes, however I have improved functionality in some parts.
- Loading branch information
Calvin Lee
committed
Nov 11, 2016
1 parent
80553d1
commit 3f05746
Showing
8 changed files
with
200 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
*.rlib | ||
|
||
#cargo | ||
/.cargo/ | ||
/target/ | ||
Cargo.lock | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.