1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 23:37:43 +00:00

Parse out major/minor device from character and block device inodes.

This commit is contained in:
Andreas Kling 2018-10-14 02:24:12 +02:00
parent 03a0dc0103
commit fa3b11ac64
4 changed files with 21 additions and 1 deletions

View file

@ -37,6 +37,8 @@ struct InodeMetadata {
time_t ctime { 0 };
time_t mtime { 0 };
time_t dtime { 0 };
unsigned majorDevice { 0 };
unsigned minorDevice { 0 };
};