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:
parent
7f25959fa2
commit
f511421aaa
3 changed files with 24 additions and 0 deletions
|
@ -8,6 +8,9 @@ public:
|
|||
enum Column {
|
||||
FileDescriptor,
|
||||
Path,
|
||||
Offset,
|
||||
Access,
|
||||
ClassName,
|
||||
__Count
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue