X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fgeekos%2Ftrap.c;h=6b8629dc06327d4f5eca8469f29746b6ae685de2;hb=c3bf21ce75d6ea7ffb74b2d548d0c0b2d2843ea7;hp=2085a992bf51ea1db6a52deb86d1d49504eda172;hpb=626595465a2c6987606a6bc697df65130ad8c2d3;p=palacios-OLD.git diff --git a/palacios/src/geekos/trap.c b/palacios/src/geekos/trap.c index 2085a99..6b8629d 100644 --- a/palacios/src/geekos/trap.c +++ b/palacios/src/geekos/trap.c @@ -1,7 +1,7 @@ /* * Trap handlers * Copyright (c) 2001,2003,2004 David H. Hovemeyer - * $Revision: 1.1 $ + * $Revision: 1.3 $ * * This is free software. You are permitted to use, * redistribute, and modify it as specified in the file "COPYING". @@ -12,7 +12,7 @@ #include #include #include - +#include /* * TODO: need to add handlers for other exceptions (such as bounds * check, debug, etc.) @@ -25,7 +25,7 @@ static void GPF_Handler(struct Interrupt_State* state) { /* Send the thread to the reaper... */ - SerialPrintLevel(1000,"Exception %d received, killing thread %p\n",state->intNum, g_currentThread); + SerialPrintLevel(1000,"VMM: Exception %d received, killing thread %p\n",state->intNum, g_currentThread); Dump_Interrupt_State(state); Exit(-1);