aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-02-13 11:36:04 -0500
committerIan Moffett <ian@osmora.org>2024-02-13 11:36:04 -0500
commitc10de830906f4c819d06a90e906178b1512c4677 (patch)
treeeb35b0079e4eb819915f586673cdb17b71f5af51
parent8ee6f7a06ce2d569805edd35a1ac79c2511b2a27 (diff)
kernel: proc: Fix field within proc struct
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--sys/include/sys/proc.h2
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_ */