[Scudo] Delete unused flag 'rss_limit_mb'.
authorMitch Phillips <31459023+hctim@users.noreply.github.com>
Fri, 14 May 2021 20:45:29 +0000 (13:45 -0700)
committerMitch Phillips <31459023+hctim@users.noreply.github.com>
Fri, 14 May 2021 20:45:43 +0000 (13:45 -0700)
EOM.

Reviewed By: cryptoad

Differential Revision: https://reviews.llvm.org/D102529

compiler-rt/lib/scudo/standalone/flags.inc

index b5cab47..690d889 100644 (file)
@@ -37,12 +37,6 @@ SCUDO_FLAG(bool, zero_contents, false, "Zero chunk contents on allocation.")
 SCUDO_FLAG(bool, pattern_fill_contents, false,
            "Pattern fill chunk contents on allocation.")
 
-SCUDO_FLAG(int, rss_limit_mb, -1,
-           "Enforce an upper limit (in megabytes) to the process RSS. The "
-           "allocator will terminate or return NULL when allocations are "
-           "attempted past that limit (depending on may_return_null). Negative "
-           "values disable the feature.")
-
 SCUDO_FLAG(bool, may_return_null, true,
            "Indicate whether the allocator should terminate instead of "
            "returning NULL in otherwise non-fatal error scenarios, eg: OOM, "