1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00
imgproxy/free_memory.go
2020-01-10 20:52:40 +06:00

10 lines
100 B
Go

// +build !linux
package main
import "runtime/debug"
func freeMemory() {
debug.FreeOSMemory()
}