libc: increase default quota of forked processes

This patch reduces the debug noise for the prominent case of executing
bash with coreutils. Without it, the forked process will always ask for
more RAM immediately when starting up.
This commit is contained in:
Norman Feske 2019-11-05 22:46:58 +01:00 committed by Christian Helmuth
parent 539110c0b1
commit f0de187bbb
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ struct Libc::Forked_child : Child_policy, Child_ready
{
session.ref_account(_env.pd_session_cap());
_env.pd().transfer_quota(cap, Ram_quota{2*1024*1024});
_env.pd().transfer_quota(cap, Ram_quota{2500*1000});
_env.pd().transfer_quota(cap, Cap_quota{100});
}