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