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
This commit is contained in:
Norman Feske 2024-09-24 17:10:50 +02:00 committed by Christian Helmuth
parent 4d559c2907
commit b3ac8c5bd8

View File

@ -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;