Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MSG aliasing instead of macro-ization to keep ABI safe
[simgrid.git] / src / s4u / s4u_storage.cpp
index e2f66aa..f08f242 100644 (file)
@@ -202,4 +202,20 @@ sg_size_t sg_storage_write(sg_storage_t storage, sg_size_t size)
 {
   return storage->write(size);
 }
+
+/* ************************** Backward ABI compatibility *************************** */
+const char* MSG_storage_get_name(sg_storage_t storage) __attribute__((alias("sg_storage_get_name")));
+sg_storage_t MSG_storage_get_by_name(const char* name) __attribute__((alias("sg_storage_get_by_name")));
+xbt_dict_t MSG_storage_get_properties(sg_storage_t storage) __attribute__((alias("sg_storage_get_properties")));
+void MSG_storage_set_property_value(sg_storage_t storage, const char* name, const char* value)
+    __attribute__((alias("sg_storage_set_property_value")));
+const char* MSG_storage_get_property_value(sg_storage_t storage, const char* name)
+    __attribute__((alias("sg_storage_get_property_value")));
+xbt_dynar_t MSG_storages_as_dynar() __attribute__((alias("sg_storages_as_dynar")));
+void MSG_storage_set_data(sg_storage_t storage, void* data) __attribute__((alias("sg_storage_set_data")));
+void* MSG_storage_get_data(sg_storage_t storage) __attribute__((alias("sg_storage_get_data")));
+const char* MSG_storage_get_host(sg_storage_t storage) __attribute__((alias("sg_storage_get_host")));
+sg_size_t MSG_storage_read(sg_storage_t storage, sg_size_t size) __attribute__((alias("sg_storage_read")));
+sg_size_t MSG_storage_write(sg_storage_t storage, sg_size_t size) __attribute__((alias("sg_storage_write")));
+
 SG_END_DECL()