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
commit fa3b11ac64
Notes: sideshowbarker 2024-07-19 18:48:30 +09:00
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 };
};