aboutsummaryrefslogtreecommitdiff
path: root/common/uapi/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/uapi/proc.c')
-rw-r--r--common/uapi/proc.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/common/uapi/proc.c b/common/uapi/proc.c
index dd05bad..e4673b5 100644
--- a/common/uapi/proc.c
+++ b/common/uapi/proc.c
@@ -12,7 +12,9 @@
*/
vm_t sys_fork(vm_t pid, vm_t u0, vm_t u1, vm_t u2)
{
- UNUSED(u0); UNUSED(u1); UNUSED(u2);
+ UNUSED(u0);
+ UNUSED(u1);
+ UNUSED(u2);
/* TODO: create new thread in the same process family */
return 0;
}
@@ -25,21 +27,25 @@ vm_t sys_exec(vm_t pid, vm_t bin, vm_t argc, vm_t argv)
vm_t sys_signal(vm_t pid, vm_t signal, vm_t u0, vm_t u1)
{
- UNUSED(u0); UNUSED(u1);
+ UNUSED(u0);
+ UNUSED(u1);
/* TODO: signals? */
return 0;
}
vm_t sys_switch(vm_t pid, vm_t u0, vm_t u1, vm_t u2)
{
- UNUSED(u0); UNUSED(u1); UNUSED(u2);
+ UNUSED(u0);
+ UNUSED(u1);
+ UNUSED(u2);
/* TODO: switch to process */
return 0;
}
vm_t sys_sync(vm_t buf, vm_t size, vm_t u0, vm_t u1)
{
- UNUSED(u0); UNUSED(u1);
+ UNUSED(u0);
+ UNUSED(u1);
/* check that only the process manager can use this syscall, otherwise
* just dump process info into the buffer (I guess, not sure if this
* will be quite required */