serenity/Kernel
Andreas Kling 243e1d8462 Kernel: Use rep insw/outsw for IDE transfers.
There are much faster ways to do disk transfers, but I'm not implementing
those today. In the meantime, this is slightly nicer. :^)
2019-04-23 03:45:55 +02:00
..
Boot Kernel: Use a multiboot header instead of a convoluted two-part bootloader. 2019-04-01 21:43:07 +02:00
Devices Kernel: Use rep insw/outsw for IDE transfers. 2019-04-23 03:45:55 +02:00
ELF Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress. 2019-04-06 14:29:29 +02:00
FileSystem Kernel: Add a systrace() syscall and implement /bin/strace using it. 2019-04-22 18:44:45 +02:00
Net Kernel: Make sure we don't use any FPU/MMX/SSE instructions. 2019-04-22 23:38:33 +02:00
TTY AK: Add String::copy(BufferType) helper. 2019-04-20 14:13:40 +02:00
VM AK: Improve smart pointer ergonomics a bit. 2019-04-14 02:36:06 +02:00
.bochsrc Give the emulator testing environments 128 MB of RAM. 2019-03-27 13:02:29 +01:00
.gitignore Kernel: Use a multiboot header instead of a convoluted two-part bootloader. 2019-04-01 21:43:07 +02:00
Alarm.h Kernel: Oops, forgot to add Alarm.h earlier. Here it is. 2019-03-20 18:16:15 +01:00
Assertions.h Kernel: Remove two unneeded headers. 2019-04-10 22:49:11 +02:00
CMOS.cpp
CMOS.h Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress. 2019-04-06 14:29:29 +02:00
Console.cpp Kernel: Remove two unneeded headers. 2019-04-10 22:49:11 +02:00
Console.h Kernel: Move devices into Kernel/Devices/. 2019-04-03 12:36:40 +02:00
DoubleBuffer.cpp Kernel: DoubleBuffer can return early if read/write is called with !size. 2019-03-20 02:12:40 +01:00
DoubleBuffer.h Move Lock from AK to Kernel, since it only works inside the kernel. 2019-03-16 13:18:22 +01:00
i386.cpp Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress. 2019-04-06 14:29:29 +02:00
i386.h Kernel: Merge TSS.h into i386.h. 2019-04-14 04:39:56 +02:00
i8253.cpp Kernel: Do timekeeping manually instead of asking the RTC all the time. 2019-03-25 02:06:57 +01:00
i8253.h Kernel: Do timekeeping manually instead of asking the RTC all the time. 2019-03-25 02:06:57 +01:00
init.cpp Snake: Flesh out a basic snake game :^) 2019-04-20 03:24:50 +02:00
IO.h Kernel: Use rep insw/outsw for IDE transfers. 2019-04-23 03:45:55 +02:00
IRQHandler.cpp
IRQHandler.h
KeyCode.h Minesweeper: Add some menus. 2019-04-13 14:32:18 +02:00
kmalloc.cpp Kernel: Make it possible to have kmalloc() dump call stacks. 2019-04-15 23:58:48 +02:00
kmalloc.h Kernel: Make it possible to have kmalloc() dump call stacks. 2019-04-15 23:58:48 +02:00
kprintf.cpp Kernel: Remove two unneeded headers. 2019-04-10 22:49:11 +02:00
KResult.h Kernel: Yet more work on bringing up POSIX SHM. 2019-04-09 02:37:38 +02:00
kstdio.h Kernel: Remove two unneeded headers. 2019-04-10 22:49:11 +02:00
KSyms.cpp Kernel: Make symbolication callable from kmalloc(). 2019-04-15 23:50:25 +02:00
KSyms.h
LinearAddress.h Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress. 2019-04-06 14:29:29 +02:00
linker.ld Kernel: Use a multiboot header instead of a convoluted two-part bootloader. 2019-04-01 21:43:07 +02:00
Lock.h Kernel: Lock::unlock_if_locked() should never donate to holder. 2019-04-17 12:37:44 +02:00
makeall.sh Snake: Flesh out a basic snake game :^) 2019-04-20 03:24:50 +02:00
Makefile Kernel: Make sure we don't use any FPU/MMX/SSE instructions. 2019-04-22 23:38:33 +02:00
mkmap.sh
MousePacket.h
PCI.cpp Kernel: More work on bringing up E1000 support. 2019-03-11 11:11:29 +01:00
PCI.h Kernel: More work on bringing up E1000 support. 2019-03-11 11:11:29 +01:00
PhysicalAddress.h Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress. 2019-04-06 14:29:29 +02:00
PIC.cpp Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress. 2019-04-06 14:29:29 +02:00
PIC.h
Process.cpp Kernel: Add a systrace() syscall and implement /bin/strace using it. 2019-04-22 18:44:45 +02:00
Process.h Kernel: Add a systrace() syscall and implement /bin/strace using it. 2019-04-22 18:44:45 +02:00
ProcessTracer.cpp Kernel: Add a systrace() syscall and implement /bin/strace using it. 2019-04-22 18:44:45 +02:00
ProcessTracer.h Kernel: Add a systrace() syscall and implement /bin/strace using it. 2019-04-22 18:44:45 +02:00
RTC.cpp
RTC.h Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress. 2019-04-06 14:29:29 +02:00
run Kernel: Use a multiboot header instead of a convoluted two-part bootloader. 2019-04-01 21:43:07 +02:00
Scheduler.cpp Kernel: Get rid of the "cool globals" thingy. 2019-04-21 12:33:14 +02:00
Scheduler.h Kernel: Remove system.h and make the uptime global a qword. 2019-04-14 01:29:14 +02:00
SharedMemory.cpp Kernel: Yet more work on bringing up POSIX SHM. 2019-04-09 02:37:38 +02:00
SharedMemory.h Kernel: Yet more work on bringing up POSIX SHM. 2019-04-09 02:37:38 +02:00
StdLib.cpp Kernel: Don't use MMX memcpy() in the kernel. 2019-04-22 17:13:18 +02:00
StdLib.h Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress. 2019-04-06 14:29:29 +02:00
sync.sh Snake: Flesh out a basic snake game :^) 2019-04-20 03:24:50 +02:00
Syscall.cpp Kernel: Add a systrace() syscall and implement /bin/strace using it. 2019-04-22 18:44:45 +02:00
Syscall.h Kernel: Add a systrace() syscall and implement /bin/strace using it. 2019-04-22 18:44:45 +02:00
Thread.cpp Kernel: Remove some more unnecessary Thread members. 2019-04-20 19:29:48 +02:00
Thread.h Kernel: Remove "restorer" field from SignalActionData. 2019-04-20 19:32:14 +02:00
UnixTypes.h Kernel: Remove "restorer" field from SignalActionData. 2019-04-20 19:32:14 +02:00