We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 002cbb5 commit c200b10Copy full SHA for c200b10
unix/ztypes_linux_arm.go
@@ -1,6 +1,6 @@
1
// +build arm,linux
2
// Created by cgo -godefs - DO NOT EDIT
3
-// cgo -godefs types_linux.go
+// cgo -godefs types_linux.go | go run mkpost.go
4
5
package unix
6
@@ -155,6 +155,15 @@ type Flock_t struct {
155
Pad_cgo_1 [4]byte
156
}
157
158
+const (
159
+ FADV_NORMAL = 0x0
160
+ FADV_RANDOM = 0x1
161
+ FADV_SEQUENTIAL = 0x2
162
+ FADV_WILLNEED = 0x3
163
+ FADV_DONTNEED = 0x4
164
+ FADV_NOREUSE = 0x5
165
+)
166
+
167
type RawSockaddrInet4 struct {
168
Family uint16
169
Port uint16
0 commit comments