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

10 lines
100 B
Go
Raw Normal View History

2020-01-10 16:52:40 +02:00
// +build !linux
package main
import "runtime/debug"
func freeMemory() {
debug.FreeOSMemory()
}