Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update MSG_storage_file_rename
[simgrid.git] / src / simix / smx_io.c
index aa0d016..6755bba 100644 (file)
@@ -300,19 +300,16 @@ xbt_dynar_t SIMIX_file_get_info(smx_process_t process, smx_file_t fd)
       fd->surf_file);
 }
 
-void SIMIX_pre_file_rename(smx_simcall_t simcall, smx_file_t fd, const char* new_name)
+void SIMIX_pre_storage_file_rename(smx_simcall_t simcall, smx_storage_t storage, const char* src, const char* dest)
 {
-  return SIMIX_file_rename(simcall->issuer, fd, new_name);
+  return SIMIX_storage_file_rename(simcall->issuer, storage, src, dest);
 }
 
-void SIMIX_file_rename(smx_process_t process, smx_file_t fd, const char* new_name)
+void SIMIX_storage_file_rename(smx_process_t process, smx_storage_t storage, const char* src, const char* dest)
 {
-  smx_host_t host = process->smx_host;
-  return  surf_workstation_model->extension.workstation.rename(host,
-      fd->surf_file, new_name);
+  return  surf_workstation_model->extension.storage.rename(storage, src, dest);
 }
 
-
 sg_storage_size_t SIMIX_pre_storage_get_free_size(smx_simcall_t simcall, const char* name)
 {
   return SIMIX_storage_get_free_size(simcall->issuer, name);