diff options
author | Ian Moffett <ian@osmora.org> | 2024-02-13 11:36:04 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-02-13 11:36:04 -0500 |
commit | c10de830906f4c819d06a90e906178b1512c4677 (patch) | |
tree | eb35b0079e4eb819915f586673cdb17b71f5af51 /sys/include | |
parent | 8ee6f7a06ce2d569805edd35a1ac79c2511b2a27 (diff) |
kernel: proc: Fix field within proc struct
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/include/sys/proc.h b/sys/include/sys/proc.h index 1c0e389..5106bf3 100644 --- a/sys/include/sys/proc.h +++ b/sys/include/sys/proc.h @@ -41,7 +41,7 @@ struct proc { pid_t pid; struct cpu_info *cpu; - TAILQ_ENTRY(tailq_entry) entries; + TAILQ_ENTRY(proc) link; }; #endif /* !_SYS_PROC_H_ */ |