summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/FileDescription.h
AgeCommit message (Expand)Author
2021-08-23Kernel: Rename BlockerSet::unblock() to something more accurateAndreas Kling
2021-08-23Kernel: Rename Thread::BlockCondition to BlockerSetAndreas Kling
2021-08-06Kernel: Rename Range => VirtualRangeAndreas Kling
2021-08-06Kernel: Move Kernel/Memory/ code into Kernel::Memory namespaceAndreas Kling
2021-07-20Kernel+LibC: Implement fcntl(2) advisory locksPeter Elliott
2021-07-17Kernel: Rename Lock to MutexAndreas Kling
2021-07-16Kernel: Add FileDescription read/write API that bypasses current offsetAndreas Kling
2021-07-11Kernel: Rename VFS => VirtualFileSystemAndreas Kling
2021-06-16Kernel: Remove various other uses of ssize_tGunnar Beutner
2021-05-13Kernel: Move FileDescription::get_dir_entries to KResultOr<ssize_t>Brian Gianforcaro
2021-05-12Kernel: Implement multi-watch InodeWatcher :^)sin-ack
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-03-19Kernel: Make FileDescription::seek() return KResultOr<off_t>Andreas Kling
2021-03-19Kernel: Refactor storage stack with u64 as mmap offsetJean-Baptiste Boric
2021-02-28Kernel: Use default con/de-structorsBen Wiederhake
2021-02-13Kernel: Add forgotten 'const' flagBen Wiederhake
2021-01-25Kernel: Hoist VM range allocation up to sys$mmap() itselfAndreas Kling
2021-01-03Kernel: Improve ProcFS behavior in low memory conditionsTom
2020-12-18Kernel: Move KBufferBuilder to the fallible KBuffer APIAndreas Kling
2020-11-30Kernel: Move block condition evaluation out of the SchedulerTom
2020-09-13Kernel: Make copy_to/from_user safe and remove unnecessary checksTom
2020-09-06Kernel: Rename FileDescription::fstat() => stat()Andreas Kling
2020-08-11Kernel: Make Inode::read_entire() return a KBuffer (not ByteBuffer)Andreas Kling
2020-08-04Kernel: Make File::write() and File::read() return KResultOr<size_t>Andreas Kling
2020-08-02Kernel: Remove a bunch of duplicate forward declarationsAndreas Kling
2020-06-02Kernel: Allow File::close() to failSergey Bugaev
2020-05-26Kernel: Plumb KResult through FileDescription::read_entire_file() implementat...Brian Gianforcaro
2020-05-16Kernel: Absorb LibBareMetal back into the kernelAndreas Kling
2020-04-18Kernel: Compactify FileDescrptionSergey Bugaev
2020-02-28Kernel: Implement basic support for sys$mmap() with MAP_PRIVATEAndreas Kling
2020-02-22Kernel: Make FileDescription slab-allocatedAndreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-02-09Kernel: Use VirtualAddress & PhysicalAddress classes from LibBareMetalLiav A
2020-02-08Kernel: Make File::truncate() take a u64Andreas Kling
2020-01-21Kernel: Make O_RDONLY non-zeroAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-12Kernel: Add a basic lock to FileDescriptionAndreas Kling
2020-01-12Kernel: Allow getting a Device from a FileDescriptionSergey Bugaev
2020-01-03Kernel: Allow fchmod() and fchown() on pre-bind() local socketsAndreas Kling
2020-01-03Kernel: read() and write() should fail with EBADF for wrong mode fd'sAndreas Kling
2020-01-02Kernel: Remove broken implementation of Unix SHMAndreas Kling
2019-11-05Kernel: Implement O_DIRECT open() flag to bypass disk cachesAndreas Kling
2019-10-25Kernel: FileDescription::is_directory() should not assert !is_fifo()Andreas Kling
2019-08-11Kernel: Move socket role tracking to the Socket class itselfSergey Bugaev
2019-08-11Kernel: Fix cloning file descriptions on forkSergey Bugaev
2019-08-11FileDescription: Disallow construction with a null FileAndreas Kling
2019-08-05Kernel: Use KBuffers for ProcFS and SynthFSAndreas Kling
2019-07-19Kernel: Some small refinements to the thread blockers.Andreas Kling
2019-07-11Kernel: Remove use of copy_ref() in favor of regular RefPtr copies.Andreas Kling
2019-07-09Kernel: Move VirtualAddress.h into VM/Andreas Kling