aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv64/kernel/proc.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-06-09 23:53:47 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-06-09 23:53:47 +0300
commit45b51617a0e3513a453c20229e02fd8fc9fbbfe1 (patch)
tree1ff6e23aea786c2b32521bb834e1fc133129101b /arch/riscv64/kernel/proc.c
parentda8eeb7695a4803d1d45c8c26c05a51fb1ba1e55 (diff)
downloadkmi-45b51617a0e3513a453c20229e02fd8fc9fbbfe1.tar.gz
kmi-45b51617a0e3513a453c20229e02fd8fc9fbbfe1.zip
use doxygen todo
Diffstat (limited to 'arch/riscv64/kernel/proc.c')
-rw-r--r--arch/riscv64/kernel/proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/riscv64/kernel/proc.c b/arch/riscv64/kernel/proc.c
index b3a1ca7..09d694f 100644
--- a/arch/riscv64/kernel/proc.c
+++ b/arch/riscv64/kernel/proc.c
@@ -8,7 +8,7 @@
#include "regs.h"
#include "csr.h"
-/* \todo: actually map fdt into the target address space */
+/** \todo actually map fdt into the target address space */
stat_t run_init(struct tcb *t, void *fdt)
{
csr_write(CSR_SSCRATCH, t);
@@ -36,7 +36,7 @@ stat_t set_ipc(struct tcb *t, id_t pid, id_t tid)
stat_t set_thread(struct tcb *t, vm_t stack)
{
/* get location of registers in memory */
- /* \todo: check alignment, should be fine but just to be sure */
+ /** \todo check alignment, should be fine but just to be sure */
struct riscv_regs *r = (struct riscv_regs *)(--t);
/* insert important values into register slots */