1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-17 17:22:09 +00:00

Kernel+ProcessManager: Add some more info to /proc/PID/fds

- "seekable": whether the fd is seekable or sequential.
- "class": which kernel C++ class implements this File.
- "offset": the current implicit POSIX API file offset.
This commit is contained in:
Andreas Kling 2019-08-03 08:42:40 +02:00
parent 7f25959fa2
commit f511421aaa
3 changed files with 24 additions and 0 deletions

View file

@ -8,6 +8,9 @@ public:
enum Column {
FileDescriptor,
Path,
Offset,
Access,
ClassName,
__Count
};