1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-01-23 11:14:48 +02:00
imgproxy/memory/free.go

11 lines
114 B
Go
Raw Normal View History

2021-11-15 15:37:56 +06:00
//go:build !linux
// +build !linux
2020-01-10 20:52:40 +06:00
2021-04-26 17:52:50 +06:00
package memory
2020-01-10 20:52:40 +06:00
import "runtime/debug"
2021-04-26 17:52:50 +06:00
func Free() {
2020-01-10 20:52:40 +06:00
debug.FreeOSMemory()
}