summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-07-10ProcessManager: Use CProcessStatisticsReader to get process data.Andreas Kling
2019-07-10WindowServer: Use CProcessStatisticsReader in WSCPUMonitor.Andreas Kling
2019-07-10top: Remove some unused code.Andreas Kling
2019-07-10Userland+LibCore: Use CProcessStatisticsReader to implement top.Andreas Kling
2019-07-09LibGUI: Add GActionGroup, a way to group a bunch of GActions.Andreas Kling
2019-07-09GAction: Remove "custom_data" and the related convenience constructors.Andreas Kling
2019-07-09Build: Prepend $PRE_CXX before the C++ compiler.Andreas Kling
2019-07-09Kernel: Pick up standard includes from ../Toolchain, not ../RootAndreas Kling
2019-07-09LibC: Provide generic versions of memcpy() and memset() for non-i386 builds.Andreas Kling
2019-07-09AK: Add Platform.h with an ARCH() macro.Andreas Kling
2019-07-09Kernel: Move PhysicalAddress.h into VM/Andreas Kling
2019-07-09Kernel: Move VirtualAddress.h into VM/Andreas Kling
2019-07-09Kernel: Move SharedMemory.{cpp,h} into FileSystem/Andreas Kling
2019-07-09Kernel: Move File.{cpp,h} into FileSystem/Andreas Kling
2019-07-09Kernel: Move i8253.cpp => Arch/i386/PIT.cppAndreas Kling
2019-07-09Kernel: Move PIC.cpp into Arch/i386/Andreas Kling
2019-07-09Shell: Remove some unused code.Andreas Kling
2019-07-08Kernel: Have the open() syscall take an explicit path length parameter.Andreas Kling
2019-07-08Shell: Handle SIGWINCH to get a nice behavior when resizing.Andreas Kling
2019-07-08Terminal: Try to preserve line contents when resizing the terminal window.Andreas Kling
2019-07-08Kernel: Don't interrupt blocked syscalls to dispatch ignored signals.Andreas Kling
2019-07-08Kernel: Add LogStream operator<< for Process.Andreas Kling
2019-07-08LibHTML: Create anonymous blocks around inline children of blocks.Andreas Kling
2019-07-08StringBuilder: Reset the internal builder length after building.Andreas Kling
2019-07-08StringView: Rename characters() to characters_without_null_termination().Andreas Kling
2019-07-08AK: Add some missing includes in SinglyLinkedList.Andreas Kling
2019-07-08AK: Add JsonValue::to_bool().Andreas Kling
2019-07-08CDirIterator: Fix another instance of StringView::characters() misuse.Andreas Kling
2019-07-08MappedFile: Fix misuse of StringView::characters().Andreas Kling
2019-07-08AK: Add JsonObject::set(key, &&value) overload.Andreas Kling
2019-07-08AK: Make it easy to convert between JsonValue and IPv4Address.Andreas Kling
2019-07-08AK: Add LogStream operator<< for IPv4Address.Andreas Kling
2019-07-08LibC: Use IPv4Address::from_string() in gethostbyname().Andreas Kling
2019-07-08AK: Add IPv4Address::from_string(StringView).Andreas Kling
2019-07-08AK: Add a simple Optional<T> template.Andreas Kling
2019-07-08String: String::to_int() should fail for any empty string, not just null.Andreas Kling
2019-07-08LogStream: Uninline some public functions so the linker can find them.Andreas Kling
2019-07-08IDEDiskDevice: Fix build after merging slave device changes.Andreas Kling
2019-07-08LibHTML: Oops, fix build.Andreas Kling
2019-07-08Kernel: Extended IDE interface to allow slave device usage (#283)Jesse
2019-07-08LibHTML: Reorganize layout tree build so that parents add their children.Andreas Kling
2019-07-08LibHTML: Move layout tree building to a separate function.Andreas Kling
2019-07-08LibHTML: Add InheritStyleValue and InitialStyleValue.Andreas Kling
2019-07-08LibHTML: Fix host build after Libraries/ shuffle.Andreas Kling
2019-07-07IRCClient: Fix build. Forgot to update a function signature.Andreas Kling
2019-07-07IRCClient: Implement the "part from channel" action.Andreas Kling
2019-07-07GStackWidget: Add a notification hook for when the active widget changes.Andreas Kling
2019-07-04Libraries: Unbreak "make install" with new directory locations.Andreas Kling
2019-07-04Libraries: Create top level directory for libraries.Andreas Kling
2019-07-04LibHTML: Move CSS value parsing to CSSParser.Andreas Kling