disk_darwin_386.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // +build darwin
  2. // +build 386
  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. // https://github.com/golang/go/blob/master/src/syscall/ztypes_darwin_386.go#L82
  35. type Statfs struct {
  36. Bsize uint32
  37. Iosize int32
  38. Blocks uint64
  39. Bfree uint64
  40. Bavail uint64
  41. Files uint64
  42. Ffree uint64
  43. Fsid Fsid
  44. Owner uint32
  45. Type uint32
  46. Flags uint32
  47. Fssubtype uint32
  48. Fstypename [16]int8
  49. Mntonname [1024]int8
  50. Mntfromname [1024]int8
  51. Reserved [8]uint32
  52. }