blob: 05b97c731a8fbfdc4f75de792e19e2b201b03d4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Copyright (c) 2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Format.h>
#include <sys/resource.h>
extern "C" {
int getpriority([[maybe_unused]] int which, [[maybe_unused]] id_t who)
{
dbgln("FIXME: Implement getpriority()");
return -1;
}
int setpriority([[maybe_unused]] int which, [[maybe_unused]] id_t who, [[maybe_unused]] int value)
{
dbgln("FIXME: Implement setpriority()");
return -1;
}
}
|