diff options
Diffstat (limited to 'src/runtime/pprof/defs_darwin_arm64.go')
-rw-r--r-- | src/runtime/pprof/defs_darwin_arm64.go | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/runtime/pprof/defs_darwin_arm64.go b/src/runtime/pprof/defs_darwin_arm64.go new file mode 100644 index 0000000..16c68a2 --- /dev/null +++ b/src/runtime/pprof/defs_darwin_arm64.go @@ -0,0 +1,26 @@ +// Code generated by cmd/cgo -godefs; DO NOT EDIT. +// cgo -godefs defs_darwin.go + +package pprof + +type machVMRegionBasicInfoData struct { + Protection int32 + Max_protection int32 + Inheritance uint32 + Shared int32 + Reserved int32 + Offset [8]byte // This is hand-edited since godefs generates: Pad_cgo_0 [8]byte. Cannot use uint64 due to alignment. + Behavior int32 + User_wired_count uint16 + Pad_cgo_1 [2]byte +} + +const ( + _VM_PROT_READ = 0x1 + _VM_PROT_WRITE = 0x2 + _VM_PROT_EXECUTE = 0x4 + + _MACH_SEND_INVALID_DEST = 0x10000003 + + _MAXPATHLEN = 0x400 +) |