aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'internal/executor/host/maxrss_other.go')
-rw-r--r--internal/executor/host/maxrss_other.go11+0 −11
1 files changed, 0 insertions, 11 deletions
diff --git a/internal/executor/host/maxrss_other.go b/internal/executor/host/maxrss_other.go
deleted file mode 100644
--- a/internal/executor/host/maxrss_other.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// SPDX-FileCopyrightText: 2026 Nikolay Govorov
-// SPDX-License-Identifier: AGPL-3.0-or-later
-
-//go:build !unix
-
-package host
-
-import "os"
-
-// maxRSS returns 0 on platforms without POSIX getrusage.
-func maxRSS(*os.ProcessState) int64 { return 0 }