blob: 01c4ada59890701fc276762ad3f4f16f3f195ea3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <apos/uapi.h>
vm_t sys_conf(vm_t param, vm_t val, vm_t u0, vm_t u1)
{
UNUSED(u0); UNUSED(u1);
/* no parameters supported atm */
return 0;
}
vm_t sys_poweroff(vm_t type, vm_t u0, vm_t u1, vm_t u2)
{
UNUSED(u0); UNUSED(u1); UNUSED(u2);
/* powering off not supported yet, you're stuck here >:D */
return 0;
}
|