summaryrefslogtreecommitdiff
path: root/LibCore/CFile.h
AgeCommit message (Collapse)Author
2019-06-07Kernel: Rename FileDescriptor to FileDescription.Andreas Kling
After reading a bunch of POSIX specs, I've learned that a file descriptor is the number that refers to a file description, not the description itself. So this patch renames FileDescriptor to FileDescription, and Process now has FileDescription* file_description(int fd).
2019-06-02Take StringView in more placesRobin Burchell
We should work towards a pattern where we take StringView as function arguments, and store String as member, to push the String construction to the last possible moment.
2019-05-28Add clang-format fileRobin Burchell
Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh.
2019-04-26LibCore: Make it possible to create a CFile for an existing file descriptor.Andreas Kling
2019-04-10LibCore: Move GIODevice hierarchy from LibGUI to LibCore.Andreas Kling