summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-03-11Userland: Remove superfluous headersBen Wiederhake
2021-03-11xargs: Fix boring memory leakBen Wiederhake
2021-03-11UserspaceEmulator: Handle MAP_FIXED with invalid addresses betterBen Wiederhake
2021-03-11UserspaceEmulator: Do not pass MAP_FIXED to KernelBen Wiederhake
2021-03-11UserspaceEmulator: Implement set_process_name syscallBen Wiederhake
2021-03-11UserspaceEmulator: Split large file into logical piecesBen Wiederhake
2021-03-11LibWeb: Remove FIXME in is_javascript_mime_type_essence_matchLuke
2021-03-11Meta: Add gdb command to serenity.shTom
2021-03-10Kernel: Move process pledge promises into protected dataAndreas Kling
2021-03-10Kernel: Move process "dumpable" flag into protected dataAndreas Kling
2021-03-10Kernel: Move process parent PID into protected data :^)Andreas Kling
2021-03-10Kernel: Move process extra_gids into protected data :^)Andreas Kling
2021-03-10Kernel: Move select Process members into protected memoryAndreas Kling
2021-03-10Kernel: Add non-const KBuffer::impl() getterAndreas Kling
2021-03-10fuzz-syscalls: Mark sys$emuctl() as someone who returns ENOSYSAndreas Kling
2021-03-10Kernel: Build with -WvlaAndreas Kling
2021-03-10Kernel: Remove VLA usage in Ext2FS block traversal codeAndreas Kling
2021-03-10Kernel: Turn a VLA into a statically-sized array in dump_backtrace()Andreas Kling
2021-03-10UserspaceEmulator: Remove debug spam about tracked malloc blocksAndreas Kling
2021-03-10Documentation: Add Serenity installation guide for VMwareBrendan Coles
2021-03-09Kernel: Convert klog() => dmesgln() in TCPSocketAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in MemoryManagerAndreas Kling
2021-03-09Kernel: Use dbgln_if() and PANIC() in Thread.cppAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in IPv4SocketAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in PageDirectoryAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in E1000NetworkAdapterAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in init()Andreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in ARP/routing codeAndreas Kling
2021-03-09Kernel: Convert klog() to dmesgln() in RegionAndreas Kling
2021-03-09AK: Add Formatter for RefPtrAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in AnonymousVMObjectAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in HPETAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in KernelRngAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in VMWareBackdoorAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in PS2MouseDeviceAndreas Kling
2021-03-09Kernel: Remove some unused things in kmalloc.cppAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in kmallocAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in filesystem codeAndreas Kling
2021-03-09Kernel: Remove ancient FIFO_DEBUG codeAndreas Kling
2021-03-09Utilities: Add a quotes database and 'fortunes' programBen Wiederhake
2021-03-09LibWeb: Run clang-format on CSS/Parser/StyleComponentValueRule.hAndreas Kling
2021-03-09LibWeb: Run clang-format on CSS/Parser/Token.hAndreas Kling
2021-03-09LibX86: Don't use "if (foo) [[unlikely]] { }" for now (to please clang)Andreas Kling
2021-03-09LibWeb: Add a whole bunch of rule classes for the new CSS parserAndreas Kling
2021-03-09LibWeb: Rename CSSParser => DeprecatedCSSParserAndreas Kling
2021-03-09LibWeb: Add specification-based CSS tokenizerAndreas Kling
2021-03-09UserspaceEmulator: Add fast-path for is<MmapRegion>()Andreas Kling
2021-03-09UserspaceEmulator+LibX86: Sprinkle some [[unlikely]] and ALWAYS_INLINEAndreas Kling
2021-03-09Emulator: Use libc.so bounds to fast-reject non-malloc addressesAndreas Kling
2021-03-09UserspaceEmulator: Support FLDL2E / FLDPI, fix typos, use M_LN2 constantBrendan Coles