12 lines
234 B
Go
Raw Normal View History

2024-03-07 16:16:07 +01:00
package protocolstate
import "github.com/projectdiscovery/utils/memguardian"
func IsLowOnMemory() bool {
if memguardian.DefaultMemGuardian != nil && memguardian.DefaultMemGuardian.Warning.Load() {
return true
}
return false
}