Files
faketunes/internal/domains/filesystem/inode.go

8 lines
123 B
Go
Raw Normal View History

package filesystem
import "sync/atomic"
func (f *FS) nextInode() uint64 {
return atomic.AddUint64(&f.inodeCounter, 1)
}