X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/649ff8bac9ec72bc9321a7b21843cd41f7b7e7bc..a34d8237b8267686bbd259670f27da273ff5236e:/src/surf/vm_interface.cpp diff --git a/src/surf/vm_interface.cpp b/src/surf/vm_interface.cpp index 7d43b69be0..b50057f507 100644 --- a/src/surf/vm_interface.cpp +++ b/src/surf/vm_interface.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2014. The SimGrid Team. +/* Copyright (c) 2013-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -24,8 +24,6 @@ surf_callback(void, VM*) VMStateChangedCallbacks; * Model * *********/ -VMModel::VMModel() : HostModel("Virtual Machine") {} - VMModel::vm_list_t VMModel::ws_vms; /************ @@ -41,14 +39,13 @@ VM::VM(Model *model, const char *name, xbt_dict_t props, } /* - * A physical host does not disapper in the current SimGrid code, but a VM may - * disapper during a simulation. + * A physical host does not disappear in the current SimGrid code, but a VM may + * disappear during a simulation. */ VM::~VM() { surf_callback_emit(VMDestructedCallbacks, this); - VMModel::ws_vms.erase(VMModel:: - vm_list_t::s_iterator_to(*this)); + VMModel::ws_vms.erase(VMModel::vm_list_t::s_iterator_to(*this)); } void VM::setState(e_surf_resource_state_t state){ @@ -57,7 +54,7 @@ void VM::setState(e_surf_resource_state_t state){ } /* - * A surf level object will be useless in the upper layer. Returing the + * A surf level object will be useless in the upper layer. Returning the * dict_elm of the host. **/ surf_resource_t VM::getPm()