Implement a proper block layer with partition support.
[pintos-anon] / src / threads / init.h
index f28303cffbf9731086b57c3c08373c58067d3114..8a3df903481dacab972dbe1a8a31b49a2f04f739 100644 (file)
@@ -6,16 +6,7 @@
 #include <stddef.h>
 #include <stdint.h>
 
-/* Physical memory size, in 4 kB pages. */
-extern size_t ram_pages;
-
 /* Page directory with kernel mappings only. */
 extern uint32_t *init_page_dir;
 
-/* -q: Power off when kernel tasks complete? */
-extern bool power_off_when_done;
-
-void power_off (void) NO_RETURN;
-void reboot (void);
-
 #endif /* threads/init.h */