diff options
author | Felix Lange <fjl@users.noreply.github.com> | 2017-09-11 15:33:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-11 15:33:18 +0800 |
commit | 5596b664c4ca5be199bb93f87155fa2c1fa7eab2 (patch) | |
tree | 2bcf87f69fc036695e079356459bc78dbb1a0cec /internal/debug | |
parent | 10181b57a9fb648f5fd424ca611820a3cf42c42b (diff) | |
download | dexon-5596b664c4ca5be199bb93f87155fa2c1fa7eab2.tar dexon-5596b664c4ca5be199bb93f87155fa2c1fa7eab2.tar.gz dexon-5596b664c4ca5be199bb93f87155fa2c1fa7eab2.tar.bz2 dexon-5596b664c4ca5be199bb93f87155fa2c1fa7eab2.tar.lz dexon-5596b664c4ca5be199bb93f87155fa2c1fa7eab2.tar.xz dexon-5596b664c4ca5be199bb93f87155fa2c1fa7eab2.tar.zst dexon-5596b664c4ca5be199bb93f87155fa2c1fa7eab2.zip |
internal/debug: add debug_freeOSMemory (#15122)
Diffstat (limited to 'internal/debug')
-rw-r--r-- | internal/debug/api.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/debug/api.go b/internal/debug/api.go index 8b7693f6a..7583878ed 100644 --- a/internal/debug/api.go +++ b/internal/debug/api.go @@ -176,6 +176,11 @@ func (*HandlerT) Stacks() string { return string(buf) } +// FreeOSMemory returns unused memory to the OS. +func (*HandlerT) FreeOSMemory() { + debug.FreeOSMemory() +} + func writeProfile(name, file string) error { p := pprof.Lookup(name) log.Info("Writing profile records", "count", p.Count(), "type", name, "dump", file) |