summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2021-06-13Kernel: Pass absolute path to shebang interpreterJelle Raaijmakers
2021-06-13Kernel: Also `move()` the shebang path in execveJelle Raaijmakers
2021-06-12USB: Further Implement USB StructuresJesse Buhagiar
2021-06-12AK: Rename Vector::append(Vector) => Vector::extend(Vector)Andreas Kling
2021-06-11Kernel: Use m_inode to stat in FileDescription::stat() if availableMax Wipfli
2021-06-11Kernel: Add missing BrightWhite color to VirtualConsoleDaniel Bertalan
2021-06-11Kernel: Block writes while we're establishing the TCP connectionGunnar Beutner
2021-06-11Kernel: Print stack traces for crashes in release buildsGunnar Beutner
2021-06-11Kernel: Enable VERIFY() checks even if the DEBUG macro is not definedGunnar Beutner
2021-06-11Kernel: Increase m_bytes_out only once during transmissionIdan Horowitz
2021-06-10Kernel: Add support for the RTL8168E-VL variant to the RTL8168 driverLuke
2021-06-10Kernel: Add driver for RTL8168 & RTL8111 NICsIdan Horowitz
2021-06-10Kernel: Re-render console after echoing charactersDaniel Bertalan
2021-06-10Kernel+LibVT: Fix selection with scrollback wrap-aroundDaniel Bertalan
2021-06-10Kernel+LibVT: Implement left-right scrollingDaniel Bertalan
2021-06-10Kernel+LibVT: Add function for deleting a range of charactersDaniel Bertalan
2021-06-10LibVT+Kernel: Support clearing the scrollback bufferDaniel Bertalan
2021-06-10LibVT+Kernel: Clean up scroll APIDaniel Bertalan
2021-06-09Kernel/PCI: Remove UNMAP_AFTER_INIT from a few methodsLiav A
2021-06-09Meta: Disable -Wmaybe-uninitializedAli Mohammad Pur
2021-06-09Kernel/Net: Support Intel 82574 adapterLiav A
2021-06-09Kernel/CommandLine: Add option to disable physical networking hardwareLiav A
2021-06-09Kernel: Introduce the NetworkingManagement singletonLiav A
2021-06-09Kernel: Mark VirtIOConsole constructor as UNMAP_AFTER_INITBrian Gianforcaro
2021-06-09Kernel: Mark VirtIORNG constructor as UNMAP_AFTER_INITBrian Gianforcaro
2021-06-09Kernel: Mark VirtIO detection/creation functions as UNMAP_AFTER_INITBrian Gianforcaro
2021-06-09Kernel: Mark MMIOAccess detection function as UNMAP_AFTER_INITBrian Gianforcaro
2021-06-09Kernel: Mark PCI Access enumeration functions as UNMAP_AFTER_INITBrian Gianforcaro
2021-06-09Kernel: Mark SyncTask::spawn() as UNMAP_AFTER_INITBrian Gianforcaro
2021-06-09Kernel: Mark FinalizerTask::spawn() as UNMAP_AFTER_INITBrian Gianforcaro
2021-06-09Kernel: Mark WorkQueue initailzation functions as UNMAP_AFTER_INITBrian Gianforcaro
2021-06-09Kernel: Mark NE2000NetworkAdapter::ram_test() UNMAP_AFTER_INITBrian Gianforcaro
2021-06-09Kernel: Mark E1000NetworkAdapter is_valid_device_id(..) UNMAP_AFTER_INITBrian Gianforcaro
2021-06-09Kernel: Mark PCISerialDevice::detect() as UNMAP_AFTER_INITBrian Gianforcaro
2021-06-08Kernel: Properly reset m_unveiled_paths on execve()Max Wipfli
2021-06-08Kernel: Don't assume there are no nodes if m_unveiled_paths.is_empty()Max Wipfli
2021-06-08Kernel: Change unveil state to dropped even when node already existsMax Wipfli
2021-06-08Kernel: Update intermediate nodes when changing unveil permissionsMax Wipfli
2021-06-08Kernel: Allow unveiling subfolders regardless of parent's permissionsMax Wipfli
2021-06-08Kernel: Use LexicalPath to avoid two consecutive slashes in unveil pathMax Wipfli
2021-06-08Kernel: Simplify `execve` shebang argument handlingJelle Raaijmakers
2021-06-08Kernel: Implement InodeFile::stat() and simplify FileDescription::stat()Max Wipfli
2021-06-07Kernel: Remove incorrect VERIFY() in Thread::relock_processGunnar Beutner
2021-06-07Kernel: Fix error propagation if Thread::WaitBlocker constructor failsBrian Gianforcaro
2021-06-07Kernel: Switch Process to InstrusiveList from InlineLinkedListBrian Gianforcaro
2021-06-07Kernel: Remove unnecessary cast to int during ensure capacityBrian Gianforcaro
2021-06-06Kernel: Don't finalize a thread while it still has code runningGunnar Beutner
2021-06-05Kernel: Return EPIPE when trying to write to an unconnected socketGunnar Beutner
2021-06-05Kernel: Perform output processing on echoDaniel Bertalan
2021-06-04Kernel: Implement offset for `lseek` with `SEEK_END`Jelle Raaijmakers