Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add -g to Fortran compilation flags.
[simgrid.git] / src / simix / smx_user.c
index 491733c..4b873f9 100644 (file)
@@ -1312,6 +1312,17 @@ xbt_dict_t simcall_storage_get_properties(smx_storage_t storage)
   return simcall_BODY_storage_get_properties(storage);
 }
 
+/**
+ * \ingroup simix_storage_management
+ * \brief Returns a dict containing the content of a storage element.
+ *
+ * \param storage A storage element
+ * \return The content of this storage element as a dict (full path file => size)
+ */
+xbt_dict_t simcall_storage_get_content(smx_storage_t storage)
+{
+  return simcall_BODY_storage_get_content(storage);
+}
 
 #ifdef HAVE_MC