disk_darwin_arm64.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // +build darwin
  2. // +build arm64
  3. package disk
  4. const (
  5. MntWait = 1
  6. MfsNameLen = 15 /* length of fs type name, not inc. nul */
  7. MNameLen = 90 /* length of buffer for returned name */
  8. MFSTYPENAMELEN = 16 /* length of fs type name including null */
  9. MAXPATHLEN = 1024
  10. MNAMELEN = MAXPATHLEN
  11. SYS_GETFSSTAT64 = 347
  12. )
  13. type Fsid struct{ val [2]int32 } /* file system id type */
  14. type uid_t int32
  15. // sys/mount.h
  16. const (
  17. MntReadOnly = 0x00000001 /* read only filesystem */
  18. MntSynchronous = 0x00000002 /* filesystem written synchronously */
  19. MntNoExec = 0x00000004 /* can't exec from filesystem */
  20. MntNoSuid = 0x00000008 /* don't honor setuid bits on fs */
  21. MntUnion = 0x00000020 /* union with underlying filesystem */
  22. MntAsync = 0x00000040 /* filesystem written asynchronously */
  23. MntSuidDir = 0x00100000 /* special handling of SUID on dirs */
  24. MntSoftDep = 0x00200000 /* soft updates being done */
  25. MntNoSymFollow = 0x00400000 /* do not follow symlinks */
  26. MntGEOMJournal = 0x02000000 /* GEOM journal support enabled */
  27. MntMultilabel = 0x04000000 /* MAC support for individual objects */
  28. MntACLs = 0x08000000 /* ACL support enabled */
  29. MntNoATime = 0x10000000 /* disable update of file access time */
  30. MntClusterRead = 0x40000000 /* disable cluster read */
  31. MntClusterWrite = 0x80000000 /* disable cluster write */
  32. MntNFS4ACLs = 0x00000010
  33. )
  34. type Statfs struct {
  35. Bsize uint32
  36. Iosize int32
  37. Blocks uint64
  38. Bfree uint64
  39. Bavail uint64
  40. Files uint64
  41. Ffree uint64
  42. Fsid Fsid
  43. Owner uint32
  44. Type uint32
  45. Flags uint32
  46. Fssubtype uint32
  47. Fstypename [16]int8
  48. Mntonname [1024]int8
  49. Mntfromname [1024]int8
  50. Reserved [8]uint32
  51. }