Files
sing-box-extended-mirror/service/oomkiller/timer_darwin.go
T

17 lines
294 B
Go

//go:build darwin && cgo
package oomkiller
import runtimeDebug "runtime/debug"
func (t *adaptiveTimer) notifyPressure() {
badCleanup()
runtimeDebug.FreeOSMemory()
t.access.Lock()
t.startLocked()
t.forceMinInterval = true
t.pendingPressureBaseline = true
t.access.Unlock()
t.poll()
}