disk_openbsd_amd64.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. // Created by cgo -godefs - DO NOT EDIT
  2. // cgo -godefs types_openbsd.go
  3. package disk
  4. const (
  5. sizeofPtr = 0x8
  6. sizeofShort = 0x2
  7. sizeofInt = 0x4
  8. sizeofLong = 0x8
  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_NODEV = 0x00000010
  20. MNT_ASYNC = 0x00000040
  21. MNT_WAIT = 1
  22. MNT_NOWAIT = 2
  23. MNT_LAZY = 3
  24. )
  25. const (
  26. sizeOfDiskstats = 0x70
  27. )
  28. type (
  29. _C_short int16
  30. _C_int int32
  31. _C_long int64
  32. _C_long_long int64
  33. _C_long_double int64
  34. )
  35. type Statfs struct {
  36. F_flags uint32
  37. F_bsize uint32
  38. F_iosize uint32
  39. Pad_cgo_0 [4]byte
  40. F_blocks uint64
  41. F_bfree uint64
  42. F_bavail int64
  43. F_files uint64
  44. F_ffree uint64
  45. F_favail int64
  46. F_syncwrites uint64
  47. F_syncreads uint64
  48. F_asyncwrites uint64
  49. F_asyncreads uint64
  50. F_fsid Fsid
  51. F_namemax uint32
  52. F_owner uint32
  53. F_ctime uint64
  54. F_fstypename [16]int8
  55. F_mntonname [90]int8
  56. F_mntfromname [90]int8
  57. F_mntfromspec [90]int8
  58. Pad_cgo_1 [2]byte
  59. Mount_info [160]byte
  60. }
  61. type Diskstats struct {
  62. Name [16]int8
  63. Busy int32
  64. Pad_cgo_0 [4]byte
  65. Rxfer uint64
  66. Wxfer uint64
  67. Seek uint64
  68. Rbytes uint64
  69. Wbytes uint64
  70. Attachtime Timeval
  71. Timestamp Timeval
  72. Time Timeval
  73. }
  74. type Fsid struct {
  75. Val [2]int32
  76. }
  77. type Timeval struct {
  78. Sec int64
  79. Usec int64
  80. }
  81. type Diskstat struct{}
  82. type Bintime struct{}