2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2021-01-17 07:22:20 +00:00
|
|
|
#include <AK/Format.h>
|
2018-11-11 14:36:40 +00:00
|
|
|
#include <assert.h>
|
2020-04-05 16:10:57 +00:00
|
|
|
#include <sys/resource.h>
|
2020-05-04 08:41:31 +00:00
|
|
|
#include <ulimit.h>
|
2018-11-11 14:36:40 +00:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2020-12-20 23:09:48 +00:00
|
|
|
long ulimit([[maybe_unused]] int cmd, [[maybe_unused]] long newlimit)
|
2018-11-11 14:36:40 +00:00
|
|
|
{
|
2021-01-17 07:22:20 +00:00
|
|
|
dbgln("FIXME: Implement getrusage()");
|
|
|
|
TODO();
|
2019-09-29 19:02:13 +00:00
|
|
|
return -1;
|
2018-11-11 14:36:40 +00:00
|
|
|
}
|
2020-04-05 16:10:57 +00:00
|
|
|
|
2020-12-20 23:09:48 +00:00
|
|
|
int getrusage([[maybe_unused]] int who, [[maybe_unused]] struct rusage* usage)
|
2020-04-05 16:10:57 +00:00
|
|
|
{
|
2021-01-17 07:22:20 +00:00
|
|
|
dbgln("FIXME: Implement getrusage()");
|
2020-04-05 16:10:57 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2018-11-11 14:36:40 +00:00
|
|
|
}
|