Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add MSG_storage_get_content function
[simgrid.git] / src / simix / smx_private.h
index 1875079..b0845e6 100644 (file)
@@ -73,12 +73,13 @@ extern xbt_dict_t watched_hosts_lib;
 /* ******************************** File ************************************ */
 typedef struct s_smx_file {
   surf_file_t surf_file;
+  void* data;                   /**< @brief user data */
 } s_smx_file_t;
 
-/* ******************************** Storage ************************************ */
-typedef struct s_smx_storage {
-  surf_storage_t surf_storage;
-} s_smx_storage_t;
+/* ******************************** Storage ************************************/
+typedef struct s_smx_storage_priv {
+  void *data;              /**< @brief user data */
+} s_smx_storage_priv_t;
 
 /*********************************** Time ************************************/