disk_freebsd_386.go 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. // Created by cgo -godefs - DO NOT EDIT
  2. // cgo -godefs types_freebsd.go
  3. package disk
  4. const (
  5. sizeofPtr = 0x4
  6. sizeofShort = 0x2
  7. sizeofInt = 0x4
  8. sizeofLong = 0x4
  9. sizeofLongLong = 0x8
  10. sizeofLongDouble = 0x8
  11. DEVSTAT_NO_DATA = 0x00
  12. DEVSTAT_READ = 0x01
  13. DEVSTAT_WRITE = 0x02
  14. DEVSTAT_FREE = 0x03
  15. MNT_RDONLY = 0x00000001
  16. MNT_SYNCHRONOUS = 0x00000002
  17. MNT_NOEXEC = 0x00000004
  18. MNT_NOSUID = 0x00000008
  19. MNT_UNION = 0x00000020
  20. MNT_ASYNC = 0x00000040
  21. MNT_SUIDDIR = 0x00100000
  22. MNT_SOFTDEP = 0x00200000
  23. MNT_NOSYMFOLLOW = 0x00400000
  24. MNT_GJOURNAL = 0x02000000
  25. MNT_MULTILABEL = 0x04000000
  26. MNT_ACLS = 0x08000000
  27. MNT_NOATIME = 0x10000000
  28. MNT_NOCLUSTERR = 0x40000000
  29. MNT_NOCLUSTERW = 0x80000000
  30. MNT_NFS4ACLS = 0x00000010
  31. MNT_WAIT = 1
  32. MNT_NOWAIT = 2
  33. MNT_LAZY = 3
  34. MNT_SUSPEND = 4
  35. )
  36. const (
  37. sizeOfDevstat = 0xf0
  38. )
  39. type (
  40. _C_short int16
  41. _C_int int32
  42. _C_long int32
  43. _C_long_long int64
  44. _C_long_double int64
  45. )
  46. type Statfs struct {
  47. Version uint32
  48. Type uint32
  49. Flags uint64
  50. Bsize uint64
  51. Iosize uint64
  52. Blocks uint64
  53. Bfree uint64
  54. Bavail int64
  55. Files uint64
  56. Ffree int64
  57. Syncwrites uint64
  58. Asyncwrites uint64
  59. Syncreads uint64
  60. Asyncreads uint64
  61. Spare [10]uint64
  62. Namemax uint32
  63. Owner uint32
  64. Fsid Fsid
  65. Charspare [80]int8
  66. Fstypename [16]int8
  67. Mntfromname [88]int8
  68. Mntonname [88]int8
  69. }
  70. type Fsid struct {
  71. Val [2]int32
  72. }
  73. type Devstat struct {
  74. Sequence0 uint32
  75. Allocated int32
  76. Start_count uint32
  77. End_count uint32
  78. Busy_from Bintime
  79. Dev_links _Ctype_struct___0
  80. Device_number uint32
  81. Device_name [16]int8
  82. Unit_number int32
  83. Bytes [4]uint64
  84. Operations [4]uint64
  85. Duration [4]Bintime
  86. Busy_time Bintime
  87. Creation_time Bintime
  88. Block_size uint32
  89. Tag_types [3]uint64
  90. Flags uint32
  91. Device_type uint32
  92. Priority uint32
  93. Id *byte
  94. Sequence1 uint32
  95. }
  96. type Bintime struct {
  97. Sec int32
  98. Frac uint64
  99. }
  100. type _Ctype_struct___0 struct {
  101. Empty uint32
  102. }