mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
parent
2f0898d2a9
commit
446df00d0d
@ -37,7 +37,7 @@ extern "C" int __attribute__((weak)) getrlimit(int resource, struct rlimit *rlim
|
||||
/*
|
||||
* Maximal size of address space
|
||||
*/
|
||||
if (resource == RLIMIT_AS) {
|
||||
if ((resource == RLIMIT_AS) || (resource == RLIMIT_DATA)) {
|
||||
rlim->rlim_cur = LONG_MAX;
|
||||
rlim->rlim_max = LONG_MAX;
|
||||
return 0;
|
||||
@ -52,6 +52,11 @@ extern "C" int __attribute__((weak)) getrlimit(int resource, struct rlimit *rlim
|
||||
return 0;
|
||||
}
|
||||
|
||||
Genode::warning(__func__, " called for unsupported resource ", resource, ", returning 0");
|
||||
|
||||
rlim->rlim_cur = 0;
|
||||
rlim->rlim_max = 0;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user