summaryrefslogtreecommitdiff
path: root/kernel/stat.h
blob: 19543afdf206d9d165812bf32a5a9eea6633f3be (plain)
1
2
3
4
5
6
7
8
9
10
11
#define T_DIR     1   // Directory
#define T_FILE    2   // File
#define T_DEVICE  3   // Device

struct stat {
  int dev;     // File system's disk device
  uint ino;    // Inode number
  short type;  // Type of file
  short nlink; // Number of links to file
  uint64 size; // Size of file in bytes
};