X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fthreads%2Finit.c;h=0e8e2b9f7508a1ba9b591b70d2a5f80798fa3aef;hb=2aec28f52b358c63f740eda0a7698becf885ec1f;hp=dbfd56be94be1af05439bbdaed05784a27581214;hpb=b0a700d18f0a0a8c87e1a4fff3a2108e0edb0fbc;p=pintos-anon diff --git a/src/threads/init.c b/src/threads/init.c index dbfd56b..0e8e2b9 100644 --- a/src/threads/init.c +++ b/src/threads/init.c @@ -21,6 +21,7 @@ #include "threads/test.h" #include "threads/thread.h" #ifdef USERPROG +#include "userprog/process.h" #include "userprog/exception.h" #include "userprog/gdt.h" #include "userprog/syscall.h" @@ -39,22 +40,22 @@ size_t ram_pages; uint32_t *base_page_dir; #ifdef FILESYS -/* Format the filesystem? */ +/* -f: Format the filesystem? */ static bool format_filesys; #endif #ifdef USERPROG -/* Initial program to run. */ +/* -ex: Initial program to run. */ static char *initial_program; #endif -/* Power off after running requested actions? */ -static bool power_off; +/* -q: Power off after running requested actions? */ +static bool do_power_off; static void ram_init (void); static void paging_init (void); static void argv_init (void); -static void do_power_off (void); +static void print_stats (void); int main (void) NO_RETURN; @@ -112,15 +113,20 @@ main (void) /* Run a user program. */ if (initial_program != NULL) { + tid_t tid; printf ("\nExecuting '%s':\n", initial_program); - thread_execute (initial_program); + tid = process_execute (initial_program); +#ifdef THREAD_JOIN_IMPLEMENTED + if (tid != TID_ERROR) + thread_join (tid); +#endif } #else test (); #endif - if (power_off) - do_power_off (); + if (do_power_off) + power_off (); /* Terminate this thread. */ thread_exit (); @@ -158,7 +164,7 @@ paging_init (void) uint32_t *pd, *pt; size_t page; - pd = base_page_dir = palloc_get (PAL_ASSERT | PAL_ZERO); + pd = base_page_dir = palloc_get_page (PAL_ASSERT | PAL_ZERO); pt = NULL; for (page = 0; page < ram_pages; page++) { @@ -169,7 +175,7 @@ paging_init (void) if (pd[pde_idx] == 0) { - pt = palloc_get (PAL_ASSERT | PAL_ZERO); + pt = palloc_get_page (PAL_ASSERT | PAL_ZERO); pd[pde_idx] = pde_create (pt); } @@ -212,13 +218,15 @@ argv_init (void) else if (!strcmp (argv[i], "-d")) debug_enable (argv[++i]); else if (!strcmp (argv[i], "-q")) - power_off = true; + do_power_off = true; #ifdef USERPROG else if (!strcmp (argv[i], "-ex")) initial_program = argv[++i]; + else if (!strcmp (argv[i], "-ul")) + user_page_limit = atoi (argv[++i]); #endif #ifdef FILESYS - else if (!strcmp (argv[i], "-f")) + else if (!strcmp (argv[i], "-f")) format_filesys = true; else if (!strcmp (argv[i], "-ci")) { @@ -244,6 +252,7 @@ argv_init (void) " -d CLASS[,...] Enable the given classes of debug messages.\n" #ifdef USERPROG " -ex 'PROG [ARG...]' Run PROG, passing the optional arguments.\n" + " -ul USER_MAX Limit user memory to USER_MAX pages.\n" #endif #ifdef FILESYS " -f Format the filesystem disk (hdb or hd0:1).\n" @@ -259,7 +268,7 @@ argv_init (void) " -q Power off after doing requested actions.\n" " -u Print this help message and power off.\n" ); - do_power_off (); + power_off (); } else PANIC ("unknown option `%s' (use -u for help)", argv[i]); @@ -268,7 +277,7 @@ argv_init (void) /* Powers down the machine we're running on, as long as we're running on Bochs or qemu. */ void -do_power_off (void) +power_off (void) { const char s[] = "Shutdown"; const char *p; @@ -277,8 +286,28 @@ do_power_off (void) filesys_done (); #endif + print_stats (); + printf ("Powering off...\n"); + serial_flush (); + for (p = s; *p != '\0'; p++) outb (0x8900, *p); for (;;); } + +/* Print statistics about Pintos execution. */ +static void +print_stats (void) +{ + timer_print_stats (); + thread_print_stats (); +#ifdef FILESYS + disk_print_stats (); +#endif + console_print_stats (); + kbd_print_stats (); +#ifdef USERPROG + exception_print_stats (); +#endif +}