diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2021-12-27 20:40:44 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2021-12-27 20:40:44 +0200 |
| commit | a12e50e5a7dae52ed8bd5a24cc6576371e20985b (patch) | |
| tree | 70ddf625029dbe1ca4d38ec4f1819fe5fe7e4291 /common/uapi/conf.c | |
| parent | d98ec57128628b81fcd32269a92742a037b7f713 (diff) | |
| download | kmi-a12e50e5a7dae52ed8bd5a24cc6576371e20985b.tar.gz kmi-a12e50e5a7dae52ed8bd5a24cc6576371e20985b.zip | |
Started work on syscalls
Diffstat (limited to 'common/uapi/conf.c')
| -rw-r--r-- | common/uapi/conf.c | 15 |
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; +} |
