From b3ac8c5bd8ad4190986bb1f3910bfbcc73aa400f Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Tue, 24 Sep 2024 17:10:50 +0200 Subject: [PATCH] dialog: increase caps for sandboxed_runtime With the reworked accounting of GUI-session resources, the default of 100 caps for menu_view does not suffice. Issue #5340 --- repos/gems/include/dialog/sandboxed_runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/gems/include/dialog/sandboxed_runtime.h b/repos/gems/include/dialog/sandboxed_runtime.h index 33f10fd029..8385edc86d 100644 --- a/repos/gems/include/dialog/sandboxed_runtime.h +++ b/repos/gems/include/dialog/sandboxed_runtime.h @@ -102,7 +102,7 @@ class Dialog::Sandboxed_runtime : Noncopyable { Start_name const name; Ram_quota const initial_ram { 4*1024*1024 }; - Cap_quota const initial_caps { 100 }; + Cap_quota const initial_caps { 130 }; Ram_quota ram = initial_ram; Cap_quota caps = initial_caps;