ulimit_fallback.go 222 B

12345678
  1. //go:build !linux && !darwin && !freebsd && !openbsd && !netbsd && !dragonfly && !windows
  2. package watcher
  3. func Ulimit() (uint64, error) {
  4. // Fallback for exotic systems - return a reasonable default
  5. return 2048, nil
  6. }