mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 13:36:09 +05:00
16 lines
158 B
Go
16 lines
158 B
Go
package utils
|
|
|
|
import (
|
|
"runtime"
|
|
"runtime/debug"
|
|
)
|
|
|
|
func FreeOSMem() {
|
|
debug.FreeOSMemory()
|
|
}
|
|
|
|
func FreeOSMemGC() {
|
|
runtime.GC()
|
|
debug.FreeOSMemory()
|
|
}
|