aboutsummaryrefslogtreecommitdiff
path: root/common/uapi/conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/uapi/conf.c')
-rw-r--r--common/uapi/conf.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/common/uapi/conf.c b/common/uapi/conf.c
new file mode 100644
index 0000000..01c4ada
--- /dev/null
+++ b/common/uapi/conf.c
@@ -0,0 +1,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;
+}