File: disk_netbsd_arm.go

package info (click to toggle)
golang-github-shirou-gopsutil 4.25.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 1,824 kB
  • sloc: makefile: 76; ansic: 19; sh: 11
file content (46 lines) | stat: -rw-r--r-- 871 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//go:build netbsd && arm
// +build netbsd,arm

// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs disk/types_netbsd.go

package disk

const (
	sizeOfStatvfs = 0xcc8
)

type (
	Statvfs struct {
		Flag         uint32
		Bsize        uint32
		Frsize       uint32
		Iosize       uint32
		Blocks       uint64
		Bfree        uint64
		Bavail       uint64
		Bresvd       uint64
		Files        uint64
		Ffree        uint64
		Favail       uint64
		Fresvd       uint64
		Syncreads    uint64
		Syncwrites   uint64
		Asyncreads   uint64
		Asyncwrites  uint64
		Fsidx        _Ctype_struct___0
		Fsid         uint32
		Namemax      uint32
		Owner        uint32
		Pad_cgo_0    [4]byte
		Spare        [4]uint64
		Fstypename   [32]uint8
		Mntonname    [1024]uint8
		Mntfromname  [1024]uint8
		Mntfromlabel [1024]uint8
	}
)

type _Ctype_struct___0 struct {
	FsidVal [2]int32
}