Files
dbbackup/internal/security/resources_other.go
A. Renz 914307ac8f ci: add golangci-lint config and fix formatting
- Add .golangci.yml with minimal linters (govet, ineffassign)
- Run gofmt -s and goimports on all files to fix formatting
- Disable fieldalignment and copylocks checks in govet
2025-12-11 17:53:28 +01:00

11 lines
236 B
Go

// go:build !linux
//go:build !linux
// +build !linux
package security
// checkVirtualMemoryLimit is a no-op on non-Linux systems (RLIMIT_AS not available)
func checkVirtualMemoryLimit(minVirtualMemoryMB uint64) error {
return nil
}