1// Created by cgo -godefs - DO NOT EDIT
2// cgo -godefs types_openbsd.go
3
4package mem
5
6const (
7	CTLVfs        = 10
8	VfsGeneric    = 0
9	VfsBcacheStat = 3
10)
11
12const (
13	sizeOfBcachestats = 0x78
14)
15
16type 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