From 45b51617a0e3513a453c20229e02fd8fc9fbbfe1 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Thu, 9 Jun 2022 23:53:47 +0300 Subject: use doxygen todo --- common/uapi/proc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'common/uapi/proc.c') 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 }; } -- cgit v1.3