Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Storage-kill: no more storage in MSG
[simgrid.git] / include / simgrid / msg.h
index 0419396..2216065 100644 (file)
@@ -162,21 +162,6 @@ XBT_PUBLIC void MSG_vm_resume(msg_vm_t vm);
 XBT_PUBLIC void MSG_vm_shutdown(msg_vm_t vm);
 XBT_PUBLIC void MSG_vm_destroy(msg_vm_t vm);
 
-/* ******************************** Storage ********************************* */
-typedef sg_storage_t msg_storage_t;
-
-XBT_PUBLIC const char* MSG_storage_get_name(const_sg_storage_t storage);
-XBT_PUBLIC msg_storage_t MSG_storage_get_by_name(const char* name);
-XBT_PUBLIC xbt_dict_t MSG_storage_get_properties(const_sg_storage_t storage);
-XBT_PUBLIC void MSG_storage_set_property_value(msg_storage_t storage, const char* name, const char* value);
-XBT_PUBLIC const char* MSG_storage_get_property_value(const_sg_storage_t storage, const char* name);
-XBT_PUBLIC xbt_dynar_t MSG_storages_as_dynar();
-XBT_PUBLIC void MSG_storage_set_data(msg_storage_t storage, void* data);
-XBT_PUBLIC void* MSG_storage_get_data(const_sg_storage_t storage);
-XBT_PUBLIC const char* MSG_storage_get_host(const_sg_storage_t storage);
-XBT_PUBLIC sg_size_t MSG_storage_read(msg_storage_t storage, sg_size_t size);
-XBT_PUBLIC sg_size_t MSG_storage_write(msg_storage_t storage, sg_size_t size);
-
 /* ******************************** Actor/process *************************** */
 /** Processes are independent agents that can do stuff on their own.
  *  They are in charge of executing your code interacting with the simulated world.