ladybird/Kernel
Andreas Kling 8c0ae711d8 Kernel+LibC: Make page fault crashes a bit more readable.
We'll now try to detect crashes that were due to dereferencing nullptr,
uninitialized malloc() memory, or recently free()'d memory.
It's not perfect but I think it's pretty good. :^)

Also added some color to the most important parts of the crash log,
and added some more modes to /bin/crash for exercising this code.

Fixes #243.
2019-06-19 20:52:12 +02:00
..
Arch/i386 Kernel+LibC: Make page fault crashes a bit more readable. 2019-06-19 20:52:12 +02:00
Boot Kernel: Make better use of the multiboot info. 2019-06-02 09:53:42 +02:00
Devices Kernel: Implement serial port driver 2019-06-08 18:12:20 +02:00
FileSystem Kernel: Expose kernel command line to userspace through /proc/cmdline 2019-06-16 14:33:59 +02:00
Net AK: Move IPv4Address from Kernel/Net/ to AK/ since it's quite useful. 2019-06-18 11:28:48 +02:00
TTY Kernel: Rename "descriptor" to "description" where appropriate. 2019-06-13 22:03:04 +02:00
VM VM: Remove PhysicalPage::create_eternal(). 2019-06-14 16:14:49 +02:00
.bochsrc
.gitignore Terminal: Use Vectors and OwnPtrs for Terminal lines. Adjust scroll 2019-06-03 20:48:34 +02:00
Alarm.h Add clang-format file 2019-05-28 17:31:20 +02:00
Assertions.h Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h} 2019-06-07 20:02:01 +02:00
build-image-grub.sh Build: Remove grub from default build process 2019-06-04 07:15:44 -07:00
build-image-qemu.sh Build: Remove grub from default build process 2019-06-04 07:15:44 -07:00
build-root-filesystem.sh LibHTML: Start working on a simple HTML library. 2019-06-15 18:55:47 +02:00
CMOS.cpp Kernel: Qualify a bunch of #include statements. 2019-06-07 19:29:34 +02:00
CMOS.h
Console.cpp Kernel: Rename FileDescriptor to FileDescription. 2019-06-07 09:36:51 +02:00
Console.h Kernel: Rename FileDescriptor to FileDescription. 2019-06-07 09:36:51 +02:00
DoubleBuffer.cpp
DoubleBuffer.h
File.cpp Kernel: Rename LinearAddress => VirtualAddress. 2019-06-07 12:56:50 +02:00
File.h Meta: Tweak .clang-format to not wrap braces after enums. 2019-06-07 17:13:23 +02:00
grub.cfg Kernel: Parse cmdline for root filesystem e.g. root=/dev/hda1 2019-06-04 07:14:40 -07:00
i8253.cpp Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h} 2019-06-07 20:02:01 +02:00
i8253.h Add clang-format file 2019-05-28 17:31:20 +02:00
init.cpp Kernel: Implement serial port driver 2019-06-08 18:12:20 +02:00
install.sh
IO.h Add clang-format file 2019-05-28 17:31:20 +02:00
IRQHandler.cpp Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h} 2019-06-07 20:02:01 +02:00
IRQHandler.h Add clang-format file 2019-05-28 17:31:20 +02:00
KeyCode.h Meta: Tweak .clang-format to not wrap braces after enums. 2019-06-07 17:13:23 +02:00
kmalloc.cpp Kernel: Use the Multiboot memory map info to inform our paging setup. 2019-06-09 11:48:58 +02:00
kmalloc.h
KParams.cpp Kernel: Fix KParams parsing with trailing space in kernel cmdline 2019-06-04 07:08:07 -07:00
KParams.h Kernel: Run clang-format on everything. 2019-06-07 11:43:58 +02:00
kprintf.cpp AK: Rename printf.cpp to PrintfImplementation.h. 2019-06-07 11:41:11 +02:00
KResult.h Kernel: Fix KResultOr move constructor not copying errors. 2019-06-14 06:24:02 +02:00
kstdio.h Add clang-format file 2019-05-28 17:31:20 +02:00
KSyms.cpp Kernel: Rename "descriptor" to "description" where appropriate. 2019-06-13 22:03:04 +02:00
KSyms.h
linker.ld
Lock.h Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h} 2019-06-07 20:02:01 +02:00
makeall.sh LibHTML: Start working on a simple HTML library. 2019-06-15 18:55:47 +02:00
Makefile Kernel: Refactor MemoryManager to use a Bitmap rather than a Vector 2019-06-12 15:38:17 +02:00
mkmap.sh
MousePacket.h
Multiboot.h Kernel: Use the Multiboot memory map info to inform our paging setup. 2019-06-09 11:48:58 +02:00
PCI.cpp Kernel: Run clang-format on everything. 2019-06-07 11:43:58 +02:00
PCI.h Add clang-format file 2019-05-28 17:31:20 +02:00
PhysicalAddress.h Kernel: Add some comparison operators to PhysicalAddress 2019-06-12 15:38:17 +02:00
PIC.cpp Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h} 2019-06-07 20:02:01 +02:00
PIC.h Add clang-format file 2019-05-28 17:31:20 +02:00
Process.cpp Kernel: Symbolicate the crash address too, not just the call stack. 2019-06-19 18:51:17 +02:00
Process.h Kernel: Symbolicate the crash address too, not just the call stack. 2019-06-19 18:51:17 +02:00
ProcessTracer.cpp Kernel: Run clang-format on everything. 2019-06-07 11:43:58 +02:00
ProcessTracer.h Kernel: Rename FileDescriptor to FileDescription. 2019-06-07 09:36:51 +02:00
RTC.cpp Kernel: Qualify a bunch of #include statements. 2019-06-07 19:29:34 +02:00
RTC.h Add clang-format file 2019-05-28 17:31:20 +02:00
run Kernel: Expose kernel command line to userspace through /proc/cmdline 2019-06-16 14:33:59 +02:00
Scheduler.cpp Kernel: Rename "descriptor" to "description" where appropriate. 2019-06-13 22:03:04 +02:00
Scheduler.h Add clang-format file 2019-05-28 17:31:20 +02:00
SharedMemory.cpp Kernel: Rename LinearAddress => VirtualAddress. 2019-06-07 12:56:50 +02:00
SharedMemory.h Kernel: Tweak some String&& => const String&. 2019-06-07 20:58:12 +02:00
StdLib.cpp Kernel: The kernel will never call mmx_memcpy() so prune it. 2019-06-07 19:32:12 +02:00
StdLib.h Add clang-format file 2019-05-28 17:31:20 +02:00
sync.sh Build: Remove grub from default build process 2019-06-04 07:15:44 -07:00
Syscall.cpp Kernel/Userland: Add a halt syscall, and a shutdown binary to invoke it 2019-06-16 12:25:30 +02:00
Syscall.h Kernel/Userland: Add a halt syscall, and a shutdown binary to invoke it 2019-06-16 12:25:30 +02:00
Thread.cpp Kernel: Rename "descriptor" to "description" where appropriate. 2019-06-13 22:03:04 +02:00
Thread.h Kernel: Rename "descriptor" to "description" where appropriate. 2019-06-13 22:03:04 +02:00
UnixTypes.h Kernel/LibC: Implement sched_* functionality to set/get process priority 2019-05-30 02:57:15 +02:00
VirtualAddress.h Kernel: Replace the last "linear" with "virtual". 2019-06-13 21:42:12 +02:00