Adjust RAM and cap quotas

The recent changes of the GUI stack (proper accounting of cap and RAM
resources by the window manager and nitpicker, output buffered at the
server side) require quota adjustments at various GUI-related places.

Issue #5356
This commit is contained in:
Norman Feske 2024-10-04 14:05:08 +02:00 committed by Christian Helmuth
parent 03a23ad987
commit 75b04b38f6
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
<runtime ram="16M" caps="400" binary="decorator">
<runtime ram="32M" caps="400" binary="decorator">
<requires>
<rom label="window_layout"/>

View File

@ -9,7 +9,7 @@
<service name="Report"/>
</parent-provides>
<start name="decorator" caps="100">
<resource name="RAM" quantum="8M"/>
<resource name="RAM" quantum="20M"/>
<config>
<controls> <maximizer/> <title/> </controls>
<default-policy/>

View File

@ -89,7 +89,7 @@
<start name="decorator" caps="450">
<binary name="init"/>
<resource name="RAM" quantum="12M"/>
<resource name="RAM" quantum="20M"/>
<route>
<service name="ROM" label="config">
<parent label="decorator_init.config"/> </service>

View File

@ -160,7 +160,7 @@
</route>
</start>
<start name="decorator" caps="450" priority="-1">
<start name="decorator" caps="480" priority="-1">
<binary name="themed_decorator"/>
<resource name="RAM" quantum="20M"/>
<resource name="CPU" quantum="20"/>

View File

@ -28,7 +28,7 @@ static void for_each_inspected_storage_target(Storage_devices const &devices, au
static void gen_terminal_start(Xml_generator &xml)
{
gen_common_start_content(xml, "terminal",
Cap_quota{110}, Ram_quota{36*1024*1024},
Cap_quota{140}, Ram_quota{36*1024*1024},
Priority::NESTED_MAX);
gen_provides<Terminal::Session>(xml);

View File

@ -1,4 +1,4 @@
<runtime ram="40M" caps="400" binary="gears">
<runtime ram="50M" caps="400" binary="gears">
<requires>
<gui/>