From: Jack Lange Date: Tue, 23 Jun 2009 16:12:15 +0000 (-0500) Subject: removed GeekOS specific debug message X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=commitdiff_plain;h=d162d33cda5ac8fedf315962cf9b8680641e7b15 removed GeekOS specific debug message --- diff --git a/palacios/src/palacios/svm_halt.c b/palacios/src/palacios/svm_halt.c index 7c1abf5..1a81bb8 100644 --- a/palacios/src/palacios/svm_halt.c +++ b/palacios/src/palacios/svm_halt.c @@ -18,11 +18,6 @@ * redistribute, and modify it as specified in the file "V3VEE_LICENSE". */ - - - - - #include #include @@ -54,7 +49,7 @@ int v3_handle_svm_halt(struct guest_info * info) ullong_t yield_stop = 0; uint32_t gap = 0; - PrintDebug("GeekOS Yield\n"); + PrintDebug("CPU Yield\n"); rdtscll(yield_start); V3_Yield(); @@ -67,7 +62,7 @@ int v3_handle_svm_halt(struct guest_info * info) v3_raise_irq(info, 0); } - PrintDebug("GeekOS Yield Done (%d cycles)\n", gap); + PrintDebug("CPU Yield Done (%d cycles)\n", gap); info->rip+=1; }