-
Updated
Jul 20, 2020 - C
osdev
Here are 424 public repositories matching this topic...
-
Updated
Jul 27, 2020 - C
-
Updated
Feb 5, 2020 - Rust
-
Updated
Aug 24, 2020 - Rust
-
Updated
Aug 25, 2020 - C++
-
Updated
Aug 6, 2019 - C
display_bsod internally calls the map_framebuffer syscall to map the framebuffer, because we . were lazy and didn't want to duplicate code. However this syscall retrieves the current process to map it in its process memory.
When we're panicking during early boot, CURRENT_PROCESS is None and this panics in the panic handler.
We should instead do a second function that maps it in the k
-
Updated
Jul 18, 2020 - C
-
Updated
Jul 17, 2020 - C++
-
Updated
Jun 28, 2020 - C
-
Updated
Aug 14, 2020 - C
-
Updated
Aug 22, 2020 - C++
Check out kernel/kernel/kshell.c and kernel/libk/string.c... Replace the 'local' string algorithms in kshell with string.c ones. Also check if string.c/string.h implements all the the standard string functions
Improve this page
Add a description, image, and links to the osdev topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the osdev topic, visit your repo's landing page and select "manage topics."


There are numerous areas in the kernel where a heap allocation failure is being silently ignored, merely asserted against or otherwise mishandled. Assertions may suffice for allocations on initialization (where system bringup would otherwise be impossible), but allocation failures which may reasonably happen during runtime must be addressed.
See, for example, #1199; all the various calls to the