base-linux: increase global cap limit to 20000

This is a prerequisite for executing sculpt.run on Linux.

Issue #4362
This commit is contained in:
Norman Feske 2022-01-03 16:16:16 +01:00 committed by Christian Helmuth
parent 2134792e4c
commit 03cbf435e5

View File

@ -154,7 +154,7 @@ class Genode::Platform : public Platform_generic
* Hence, we define the limit somewhat arbitrary on Linux and
* accept that scenarios may break when reaching core's fd limit.
*/
size_t max_caps() const override { return 10000; }
size_t max_caps() const override { return 20000; }
void wait_for_exit() override;
};