diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-11 11:12:46 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-11 11:13:35 -0400 |
commit | 3b3e86a463c0742b98f801d538a129ef0ee6bb4c (patch) | |
tree | 895001a91f709ffe4ea6e8300bcd238c1b9b6798 | |
parent | b314780bacfef578f7502c9caed48e92178791bc (diff) |
kern: proc: Documented rest of structure fields
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | src/sys/include/sys/proc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sys/include/sys/proc.h b/src/sys/include/sys/proc.h index dcf6108..cfc193a 100644 --- a/src/sys/include/sys/proc.h +++ b/src/sys/include/sys/proc.h @@ -73,7 +73,9 @@ struct penv_blk { * @flags: State flags (see PROC_*) * @pcb: Process control block * @scdom: Syscall domain + * @fdtab: File descriptor table * @envblk: Environment block + * @envblk_box: Pointer box for envblk * @level: Access level * @maplist_lock: Protects the maplist * @sigtab: Signal table |