From e62c43a70b476dfe5dd10c5dcc9a93612c12700e Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Sat, 24 Sep 2016 20:30:23 +0200 Subject: [PATCH] Doc --- kernel/include/process.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kernel/include/process.hpp b/kernel/include/process.hpp index fd98afec..36d72763 100644 --- a/kernel/include/process.hpp +++ b/kernel/include/process.hpp @@ -51,14 +51,14 @@ struct segment_t { }; struct process_t { - pid_t pid; - pid_t ppid; + pid_t pid; ///< The process id + pid_t ppid; ///< The parent's process id - bool system; + bool system; ///< Indicates if the process is a system process - size_t priority; + size_t priority; ///< The priority of the process - size_t tty; + size_t tty; ///< The terminal the process is linked to size_t physical_cr3; size_t paging_size;