core: increase initial quota to 224K

This commit is contained in:
Christian Helmuth 2016-01-24 20:58:14 +01:00
parent 7f73e5e879
commit 688e86ab68
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ int main()
/* transfer all left memory to init, but leave some memory left for core */
/* NOTE: exception objects thrown in core components are currently allocated on
core's heap and not accounted by the component's meta data allocator */
Genode::size_t init_quota = platform()->ram_alloc()->avail() - 172*1024;
Genode::size_t init_quota = platform()->ram_alloc()->avail() - 224*1024;
env()->ram_session()->transfer_quota(init_ram_session_cap, init_quota);
PDBG("transferred %zu MB to init", init_quota / (1024*1024));