mirror of https://github.com/BOINC/boinc.git
- VBOX: Remove unused function, I don't remember what I was going to use that
hook for. samples/vboxwrapper/ vbox.cpp, .h vboxwrapper.cpp svn path=/trunk/boinc/; revision=24761
This commit is contained in:
parent
29df948fbd
commit
17f11cc577
|
@ -8904,3 +8904,11 @@ Charlie 7 Dec 2011
|
|||
make_ProgThruProc.sh
|
||||
PostInstall.cpp
|
||||
release_boinc.sh
|
||||
|
||||
Rom 9 Dec 2011
|
||||
- VBOX: Remove unused function, I don't remember what I was going to use that
|
||||
hook for.
|
||||
|
||||
samples/vboxwrapper/
|
||||
vbox.cpp, .h
|
||||
vboxwrapper.cpp
|
||||
|
|
|
@ -88,10 +88,6 @@ int VBOX_VM::run() {
|
|||
return 0;
|
||||
}
|
||||
|
||||
void VBOX_VM::poll() {
|
||||
return;
|
||||
}
|
||||
|
||||
void VBOX_VM::cleanup() {
|
||||
stop();
|
||||
deregister_vm();
|
||||
|
|
|
@ -45,7 +45,6 @@ struct VBOX_VM {
|
|||
// useful for debugging VMs.
|
||||
bool register_only;
|
||||
|
||||
void poll();
|
||||
int run();
|
||||
int stop();
|
||||
int pause();
|
||||
|
|
|
@ -247,7 +247,6 @@ int main(int argc, char** argv) {
|
|||
set_throttles(aid, vm);
|
||||
|
||||
while (1) {
|
||||
vm.poll();
|
||||
is_running = vm.is_running();
|
||||
|
||||
if (boinc_status.no_heartbeat || boinc_status.quit_request) {
|
||||
|
|
Loading…
Reference in New Issue