summaryrefslogtreecommitdiff
path: root/vendor/modernc.org/libc/memgrind_musl.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/modernc.org/libc/memgrind_musl.go')
-rw-r--r--vendor/modernc.org/libc/memgrind_musl.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/modernc.org/libc/memgrind_musl.go b/vendor/modernc.org/libc/memgrind_musl.go
index 1ee38209d..1dc25ef2f 100644
--- a/vendor/modernc.org/libc/memgrind_musl.go
+++ b/vendor/modernc.org/libc/memgrind_musl.go
@@ -269,6 +269,17 @@ func UsableSize(p uintptr) Tsize_t {
return Tsize_t(memory.UintptrUsableSize(p))
}
+type MemAllocatorStat struct {
+ Allocs int
+ Bytes int
+ Mmaps int
+}
+
+// MemStat no-op for this build tag
+func MemStat() MemAllocatorStat {
+ return MemAllocatorStat{}
+}
+
func Xmalloc_usable_size(tls *TLS, p uintptr) (r Tsize_t) {
return UsableSize(p)
}