Age | Commit message (Expand) | Author |
2019-07-17 | Kernel: Initial FDC Device Driver (#315) | Jesse |
2019-07-16 | SharedBuffer: Fix deadlock on destroy | Robin Burchell |
2019-07-13 | Kernel: First cut of a sb16 driver | Robin Burchell |
2019-07-09 | Kernel: Pick up standard includes from ../Toolchain, not ../Root | Andreas Kling |
2019-07-09 | Kernel: Move SharedMemory.{cpp,h} into FileSystem/ | Andreas Kling |
2019-07-09 | Kernel: Move File.{cpp,h} into FileSystem/ | Andreas Kling |
2019-07-09 | Kernel: Move i8253.cpp => Arch/i386/PIT.cpp | Andreas Kling |
2019-07-09 | Kernel: Move PIC.cpp into Arch/i386/ | Andreas Kling |
2019-07-04 | AK: Move some of LogStream out of line & add overloads for smart pointers. | Andreas Kling |
2019-06-29 | Kernel: Change the format of /proc/all to JSON. | Andreas Kling |
2019-06-28 | AK: Add Vector(std::initializer_list<T>) constructor. | Andreas Kling |
2019-06-12 | Kernel: Refactor MemoryManager to use a Bitmap rather than a Vector | Conrad Pankoff |
2019-06-08 | Kernel: Implement serial port driver | Conrad Pankoff |
2019-06-07 | Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h} | Andreas Kling |
2019-06-07 | Kernel: Rename FileDescriptor to FileDescription. | Andreas Kling |
2019-06-04 | Kernel: Add KParams class for accessing kernel cmdline parameters (#188) | Conrad Pankoff |
2019-06-02 | Kernel: Implement MBR partition loader (#168) | Conrad Pankoff |
2019-06-02 | Kernel: Rename OffsetDiskDevice to DiskPartition | Conrad Pankoff |
2019-06-02 | Kernel: Implement OffsetDiskDevice to prepare for partition support | Conrad Pankoff |
2019-05-30 | FileSystem: Add a Custody class that represents a parent/child guardianship. | Andreas Kling |
2019-05-30 | Kernel: Add InodeFile, a File subclass for regular files. | Andreas Kling |
2019-05-23 | Kernel/AK: Move ELF loader to AK | Robin Burchell |
2019-05-17 | LibCore: Move AK/ArgsParser to LibCore/CArgsParser | Robin Burchell |
2019-05-17 | Kernel: Implement a simple virtual address range allocator. | Andreas Kling |
2019-05-16 | Only the kernel needs to build with default includes disabled. | Andreas Kling |
2019-05-16 | Kernel: Move Inode to its own files. | Andreas Kling |
2019-05-15 | Kernel: Add a beep() syscall that beeps the PC speaker. | Andreas Kling |
2019-05-13 | Feature/pidof (#31) | GuillaumeGas |
2019-04-28 | Kernel: Make ProcessTracer inherit from File. | Andreas Kling |
2019-04-23 | Build: Pass --gc-sections to the linker in all builds. | Andreas Kling |
2019-04-22 | Kernel: Make sure we don't use any FPU/MMX/SSE instructions. | Andreas Kling |
2019-04-22 | Kernel: Add a systrace() syscall and implement /bin/strace using it. | Andreas Kling |
2019-04-21 | Include Makefile.common in all other Makefiles. | Andreas Kling |
2019-04-20 | Get rid of SERENITY macro since the compiler already defines __serenity__ | Andreas Kling |
2019-04-18 | Kernel+LibC: Add a DebugLogDevice that forwards everything to I/O port 0xe9. | Andreas Kling |
2019-04-16 | AK: Try to use StringViews more for substrings and splitting. | Andreas Kling |
2019-04-09 | Kernel: More work towards POSIX SHM, also add ftruncate(). | Andreas Kling |
2019-04-06 | Kernel: Oops, also moved FileDescriptor into FileSystem/, fix Makefile. | Andreas Kling |
2019-04-06 | Kernel: Move FIFO into FileSystem/ and Socket+LocalSocket into Net/. | Andreas Kling |
2019-04-05 | Kernel: Build with i686-pc-serenity-g++. | Andreas Kling |
2019-04-03 | Kernel: Move VM-related files into Kernel/VM/. | Andreas Kling |
2019-04-03 | Kernel: Move devices into Kernel/Devices/. | Andreas Kling |
2019-04-03 | Kernel: Move ELF-related files into Kernel/ELF/. | Andreas Kling |
2019-04-03 | Kernel: Move TTY-related files into Kernel/TTY/. | Andreas Kling |
2019-04-03 | Kernel: Move FS-related files into Kernel/FileSystem/ | Andreas Kling |
2019-04-02 | Kernel: Move networking related files into Kernel/Net/. | Andreas Kling |
2019-04-02 | Kernel: Add a LoopbackAdapter for talking to yourself via 127.0.0.1. | Andreas Kling |
2019-04-01 | Kernel: Use a multiboot header instead of a convoluted two-part bootloader. | Andreas Kling |
2019-03-23 | Kernel: Introduce threads, and refactor everything in support of it. | Andreas Kling |
2019-03-14 | IPv4: Factor out UDP parts of IPv4Socket into a UDPSocket class. | Andreas Kling |