X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9a696a7603f2d24e7f7e00f599362f0cc0620382..3fc1d8cd34e7f80a5f11efff7c7d87874a879dec:/src/surf/vm_hl13.cpp diff --git a/src/surf/vm_hl13.cpp b/src/surf/vm_hl13.cpp index aee9b9927d..ad0151d985 100644 --- a/src/surf/vm_hl13.cpp +++ b/src/surf/vm_hl13.cpp @@ -33,7 +33,7 @@ void VMHL13Model::updateActionsState(double /*now*/, double /*delta*/) {} VirtualMachine *VMHL13Model::createVM(const char *name, sg_host_t host_PM) { - VirtualMachine* vm = new VMHL13(this, name, NULL, host_PM); + VirtualMachine* vm = new VMHL13(this, name, host_PM); VMCreatedCallbacks(vm); return vm; } @@ -95,8 +95,8 @@ double VMHL13Model::next_occuring_event(double now) /************ * Resource * ************/ -VMHL13::VMHL13(VMModel *model, const char* name, xbt_dict_t props, sg_host_t host_PM) - : VirtualMachine(model, name, props, host_PM) +VMHL13::VMHL13(VMModel *model, const char* name, sg_host_t host_PM) + : VirtualMachine(model, name, host_PM) { /* Currently, we assume a VM has no storage. */ p_storage = NULL;