From 26fdc9b1f7b5e4629436cec7aaf9a9e91732eb24 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Tue, 13 Sep 2011 20:59:01 +0000 Subject: [PATCH] Quick Updates svn path=/trunk/boinc/; revision=24181 --- samples/vboxwrapper/vbox.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/samples/vboxwrapper/vbox.cpp b/samples/vboxwrapper/vbox.cpp index 56bbbafe87..5b838ed49e 100644 --- a/samples/vboxwrapper/vbox.cpp +++ b/samples/vboxwrapper/vbox.cpp @@ -745,6 +745,11 @@ int VBOX_VM::startvm() { char buf[256]; int retval; + fprintf( + stderr, + "%s Starting virtual machine.\n", + boinc_msg_prefix(buf, sizeof(buf)) + ); command = "startvm \"" + vm_name + "\" --type headless"; retval = vbm_popen(command, output); if (retval) { @@ -768,6 +773,11 @@ int VBOX_VM::stop() { char buf[256]; int retval; + fprintf( + stderr, + "%s Stopping virtual machine.\n", + boinc_msg_prefix(buf, sizeof(buf)) + ); command = "controlvm \"" + vm_name + "\" savestate"; retval = vbm_popen(command, output); if (retval) {