Add stubs for setting RLIMIT_NOFILE and RLIMIT_STACK

This commit is contained in:
EnderIce2 2024-03-20 17:38:53 +02:00
parent a1cda40743
commit a05f88091c
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -1984,6 +1984,16 @@ static int linux_prlimit64(SysFrm *, pid_t pid, int resource,
switch (resource)
{
case RLIMIT_NOFILE:
{
fixme("Setting RLIMIT_NOFILE is stub");
return 0;
}
case RLIMIT_STACK:
{
fixme("Setting RLIMIT_STACK is stub");
return 0;
}
case RLIMIT_CPU:
case RLIMIT_FSIZE:
case RLIMIT_DATA: