Files
TorrServerJellyfin/server/torr/utils/freemem.go
2021-02-18 16:56:55 +03:00

16 lines
158 B
Go

package utils
import (
"runtime"
"runtime/debug"
)
func FreeOSMem() {
debug.FreeOSMemory()
}
func FreeOSMemGC() {
runtime.GC()
debug.FreeOSMemory()
}