ulimit_fallback.go

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