adaptai / projects /ui /crush /internal /lsp /watcher /ulimit_fallback.go
ADAPT-Chase's picture
Add files using upload-large-folder tool
8ab4ccd verified
//go:build !linux && !darwin && !freebsd && !openbsd && !netbsd && !dragonfly && !windows
package watcher
func Ulimit() (uint64, error) {
// Fallback for exotic systems - return a reasonable default
return 2048, nil
}