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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/uapi/proc.c b/common/uapi/proc.c
index 604b862..2c1fe77 100644
--- a/common/uapi/proc.c
+++ b/common/uapi/proc.c
@@ -28,7 +28,7 @@ SYSCALL_DEFINE0(fork)(){
}
SYSCALL_DEFINE2(exec)(sys_arg_t bin, sys_arg_t interp){
- /* \todo: execute new process, probably with more sensible argc passing */
+ /** \todo execute new process, probably with more sensible argc passing */
struct tcb *r = cur_tcb();
/* mark binary to be kept */
@@ -58,13 +58,13 @@ SYSCALL_DEFINE2(exec)(sys_arg_t bin, sys_arg_t interp){
}
SYSCALL_DEFINE2(signal)(sys_arg_t tid, sys_arg_t signal){
- /* \todo: signals? */
+ /** \todo signals? */
return (struct sys_ret){ OK, 0 };
}
SYSCALL_DEFINE1(swap)(sys_arg_t tid){
- /* \todo: switch to process */
- /* \todo: should switch return the registers of the new thread that would
+ /** \todo switch to process */
+ /** \todo should switch return the registers of the new thread that would
* be used for message passing? */
return (struct sys_ret){ OK, 0 };
}