forked from SerenityOS/serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathulimit.cpp
41 lines (35 loc) · 900 Bytes
/
ulimit.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* Copyright (c) 2018-2020, Andreas Kling <[email protected]>
* Copyright (c) 2022, Lucas Chollet <[email protected]>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Format.h>
#include <assert.h>
#include <sys/resource.h>
#include <syscall.h>
#include <ulimit.h>
extern "C" {
long ulimit([[maybe_unused]] int cmd, [[maybe_unused]] long newlimit)
{
dbgln("FIXME: Implement ulimit()");
TODO();
return -1;
}
// https://pubs.opengroup.org/onlinepubs/009696699/functions/getrusage.html
int getrusage(int who, struct rusage* usage)
{
int rc = syscall(SC_getrusage, who, usage);
__RETURN_WITH_ERRNO(rc, rc, -1);
}
int getrlimit([[maybe_unused]] int resource, rlimit* rl)
{
rl->rlim_cur = RLIM_INFINITY;
rl->rlim_max = RLIM_INFINITY;
return 0;
}
int setrlimit([[maybe_unused]] int resource, [[maybe_unused]] rlimit const* rl)
{
return 0;
}
}