Redo makefiles.
[pintos-anon] / src / threads / thread.c
index 61351b569add5a112f66f2210f9bb70989ced7c6..f24f1fe4b3777d729b8a5fdd3374946076d8cb1f 100644 (file)
@@ -1,15 +1,15 @@
 #include "thread.h"
 #include <stddef.h>
-#include "debug.h"
 #include "interrupt.h"
 #include "intr-stubs.h"
-#include "lib.h"
 #include "mmu.h"
 #include "palloc.h"
-#include "random.h"
 #include "switch.h"
+#include "lib/debug.h"
+#include "lib/lib.h"
+#include "lib/random.h"
 #ifdef USERPROG
-#include "gdt.h"
+#include "userprog/gdt.h"
 #endif
 
 /* Value for struct thread's `magic' member.