Added an InodeAttributes.Nlink field.

geesefs-0-30-9
Aaron Jacobs 2015-03-18 14:09:30 +11:00
parent 33e35f568b
commit cf86ea52d1
1 changed files with 3 additions and 0 deletions

View File

@ -265,6 +265,9 @@ func init() {
type InodeAttributes struct {
Size uint64
// The number of incoming hard links to this inode.
Nlink uint64
// The mode of the inode. This is exposed to the user in e.g. the result of
// fstat(2).
//