Files
sing-box/service/oomkiller/timer_darwin.go
T
2026-06-25 17:38:13 +08:00

13 lines
214 B
Go

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