2 * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
6 // This file includes some known R5 syscalls
7 // ToDo: maybe they should indeed do something...
9 #include <SupportDefs.h>
12 int _kset_mon_limit_(int num
);
13 int _kset_fd_limit_(int num
);
14 int _kget_cpu_state_(int cpuNum
);
15 int _kset_cpu_state_(int cpuNum
, int state
);
19 _kset_mon_limit_(int num
)
26 _kset_fd_limit_(int num
)
33 _kget_cpu_state_(int cpuNum
)
40 _kset_cpu_state_(int cpuNum
, int state
)
42 return state
? B_OK
: B_ERROR
;