Skip to content
Snippets Groups Projects
Commit eea63c0c authored by Tronel Frederic's avatar Tronel Frederic
Browse files

Ajout de labels Latex pour référencer dans le sujet.

parent e076b1cc
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