Skip to content
Snippets Groups Projects
Commit 4062af7a authored by Wilke Pierre's avatar Wilke Pierre
Browse files

Merge branch 'squelette-tp-01-ordonnancement' of...

Merge branch 'squelette-tp-01-ordonnancement' of gitlab-research.centralesupelec.fr:cidre-public/systemes-exploitation/xv6-riscv-tp into squelette-tp-01-ordonnancement
parents 05e16445 eea63c0c
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ struct cpu cpus[NCPU];
struct proc proc[NPROC];
// Priority table $\label{proc.c:lprio}$
struct list_proc* prio[NPRIO];
struct spinlock prio_lock;
......
......@@ -115,9 +115,11 @@ struct proc {
char* cmd;
};
// $\label{proc.h:lproc-begin}$
struct list_proc {
struct proc* p;
struct list_proc* next;
};
// $\label{proc.h:lproc-end}$
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment