X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/83eac0d2fba299311b07779b4de686124ce0905b..53dd673a07059d04f7ee5c280470958856fdf8d8:/src/simix/libsmx.cpp?ds=sidebyside diff --git a/src/simix/libsmx.cpp b/src/simix/libsmx.cpp index 901f49fff8..c8bb3117ee 100644 --- a/src/simix/libsmx.cpp +++ b/src/simix/libsmx.cpp @@ -54,40 +54,40 @@ xbt_swag_t simcall_host_get_process_list(sg_host_t host) * \deprecated */ double simcall_host_get_current_power_peak(sg_host_t host) { - return host->current_power_peak(); + return host->currentPowerPeak(); } /** \ingroup simix_host_management * \deprecated */ double simcall_host_get_power_peak_at(sg_host_t host, int pstate_index) { - return host->power_peak_at(pstate_index); + return host->powerPeakAt(pstate_index); } /** \deprecated */ void simcall_host_get_params(sg_host_t vm, vm_params_t params) { - vm->get_parameters(params); + vm->parameters(params); } /** \deprecated */ void simcall_host_set_params(sg_host_t vm, vm_params_t params) { - vm->set_parameters(params); + vm->setParameters(params); } /** \ingroup simix_storage_management * \deprecated */ xbt_dict_t simcall_host_get_mounted_storage_list(sg_host_t host) { - return host->mounted_storages_as_dict(); + return host->mountedStoragesAsDict(); } /** \ingroup simix_storage_management * \deprecated */ xbt_dynar_t simcall_host_get_attached_storage_list(sg_host_t host) { - return host->attached_storages(); + return host->attachedStorages(); } // ***** Other simcalls @@ -628,7 +628,7 @@ void simcall_process_set_kill_time(smx_process_t process, double kill_time) * \brief Get the kill time of a process (or 0 if unset). */ double simcall_process_get_kill_time(smx_process_t process) { - return SIMIX_timer_get_date(process->kill_timer); + return SIMIX_timer_get_date(process->kill_timer); } /**