1/*
2 * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5
6// This file includes some known R5 syscalls
7// ToDo: maybe they should indeed do something...
8
9#include <SupportDefs.h>
10
11
12int _kset_mon_limit_(int num);
13int _kset_fd_limit_(int num);
14int _kget_cpu_state_(int cpuNum);
15int _kset_cpu_state_(int cpuNum, int state);
16
17
18int
19_kset_mon_limit_(int num)
20{
21	return B_ERROR;
22}
23
24
25int
26_kset_fd_limit_(int num)
27{
28	return B_ERROR;
29}
30
31
32int
33_kget_cpu_state_(int cpuNum)
34{
35	return 1;
36}
37
38
39int
40_kset_cpu_state_(int cpuNum, int state)
41{
42	return state ? B_OK : B_ERROR;
43}
44
45