diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-15 21:46:32 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-15 21:46:32 -0400 |
commit | 750a12a404e472b9c2bffb0404dc153fa1a23a91 (patch) | |
tree | b26fff2b6c84a519e687d537f0ae26706907f380 | |
parent | 3a1e07527c72b318fbb02e79e0bee1403147cde6 (diff) |
kern: proc: Fix comment
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | src/sys/include/sys/proc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sys/include/sys/proc.h b/src/sys/include/sys/proc.h index d1afda3..a547233 100644 --- a/src/sys/include/sys/proc.h +++ b/src/sys/include/sys/proc.h @@ -222,8 +222,7 @@ int proc_check_addr(struct proc *proc, uintptr_t addr, size_t len); * * @proc: Process to put to sleep * - * Returns zero if the address is within the process bounds, - * otherwise a less than zero value on failure. + * Returns zero on success */ int proc_sleep(struct proc *proc); |