...

Source file src/github.com/shirou/gopsutil/mem/mem_openbsd_arm64.go

Documentation: github.com/shirou/gopsutil/mem

     1  // +build openbsd,arm64
     2  
     3  // Code generated by cmd/cgo -godefs; DO NOT EDIT.
     4  // cgo -godefs mem/types_openbsd.go
     5  
     6  package mem
     7  
     8  const (
     9  	CTLVfs        = 10
    10  	VfsGeneric    = 0
    11  	VfsBcacheStat = 3
    12  )
    13  
    14  const (
    15  	sizeOfBcachestats = 0x90
    16  )
    17  
    18  type Bcachestats struct {
    19  	Numbufs       int64
    20  	Numbufpages   int64
    21  	Numdirtypages int64
    22  	Numcleanpages int64
    23  	Pendingwrites int64
    24  	Pendingreads  int64
    25  	Numwrites     int64
    26  	Numreads      int64
    27  	Cachehits     int64
    28  	Busymapped    int64
    29  	Dmapages      int64
    30  	Highpages     int64
    31  	Delwribufs    int64
    32  	Kvaslots      int64
    33  	Avail         int64
    34  	Highflips     int64
    35  	Highflops     int64
    36  	Dmaflips      int64
    37  }
    38  

View as plain text