mem_openbsd_amd64.go 535 B

1234567891011121314151617181920212223242526272829303132
  1. // Created by cgo -godefs - DO NOT EDIT
  2. // cgo -godefs types_openbsd.go
  3. package mem
  4. const (
  5. CTLVfs = 10
  6. VfsGeneric = 0
  7. VfsBcacheStat = 3
  8. )
  9. const (
  10. sizeOfBcachestats = 0x78
  11. )
  12. type Bcachestats struct {
  13. Numbufs int64
  14. Numbufpages int64
  15. Numdirtypages int64
  16. Numcleanpages int64
  17. Pendingwrites int64
  18. Pendingreads int64
  19. Numwrites int64
  20. Numreads int64
  21. Cachehits int64
  22. Busymapped int64
  23. Dmapages int64
  24. Highpages int64
  25. Delwribufs int64
  26. Kvaslots int64
  27. Avail int64
  28. }