From 4e12c22c10b5f389953be0d073a6247926e218a1 Mon Sep 17 00:00:00 2001 From: Carsten Grohmann Date: Fri, 31 Mar 2023 21:45:36 +0200 Subject: [PATCH] Summary of the analysis revised one more time --- OOMAnalyser.html | 10 +++++----- test.py | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/OOMAnalyser.html b/OOMAnalyser.html index ea72edb..944f945 100644 --- a/OOMAnalyser.html +++ b/OOMAnalyser.html @@ -449,7 +449,7 @@ window.onerror = function (msg, url, lineNo, columnNo, errorObj) { requested a memory chunk of order from the "" memory zone. - That are 2order pages == + This is 2order pages == 2 pages == a == @@ -459,17 +459,17 @@ window.onerror = function (msg, url, lineNo, columnNo, errorObj) {

- The request failed because after its fulfillment the free memory would be below the memory - low watermark. + The request failed because the free memory would be below the memory low watermark + after its completion. - If this requirement were met, the free memory would still be above the low memory watermark. + If this requirement was satisfied, the free memory would still be above the low memory watermark. The request failed because there is no free chunk in the current or higher order. The request failed, but the reason is unknown. - The memory shortage triggers the OOM process. + This memory shortage triggers the OOM process.

diff --git a/test.py b/test.py index 0769156..811c841 100755 --- a/test.py +++ b/test.py @@ -37,8 +37,8 @@ class ThreadedTCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer): class TestBase(unittest.TestCase): text_alloc_failed_below_low_watermark = ( - "The request failed because after its fulfillment the free memory would " - "be below the memory low watermark." + "The request failed because the free memory would be below the memory low " + "watermark after its completion." ) text_alloc_failed_no_free_chunks = ( "The request failed because there is no free chunk in the current or "