1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-01-08 10:45:04 +02:00
imgproxy/memory/free.go

10 lines
96 B
Go
Raw Normal View History

2020-01-10 16:52:40 +02:00
// +build !linux
2021-04-26 13:52:50 +02:00
package memory
2020-01-10 16:52:40 +02:00
import "runtime/debug"
2021-04-26 13:52:50 +02:00
func Free() {
2020-01-10 16:52:40 +02:00
debug.FreeOSMemory()
}